From 11f5a211cd3942e692d0fa78a6e90cf60aa6f7e6 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:41:22 -0500 Subject: [PATCH 01/16] refactor: rename the `function` rule to `function_expression` to avoid collision with the `function` literal --- grammar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grammar.js b/grammar.js index 4986ad46..798822cf 100644 --- a/grammar.js +++ b/grammar.js @@ -497,7 +497,7 @@ module.exports = grammar({ $.import, $.object, $.array, - $.function, + $.function_expression, $.arrow_function, $.generator_function, $.class, @@ -701,7 +701,7 @@ module.exports = grammar({ class_heritage: $ => seq('extends', $.expression), - function: $ => prec('literal', seq( + function_expression: $ => prec('literal', seq( optional('async'), 'function', field('name', optional($.identifier)), From fe843d253ee9868c283b274dc8f42797f886414f Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:44:08 -0500 Subject: [PATCH 02/16] refactor: move parsing html comments to the scanner --- grammar.js | 35 ++++++++++++++++------------------- src/scanner.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 19 deletions(-) diff --git a/grammar.js b/grammar.js index 798822cf..67b23db4 100644 --- a/grammar.js +++ b/grammar.js @@ -17,10 +17,16 @@ module.exports = grammar({ $._automatic_semicolon, $._template_chars, $._ternary_qmark, + $.html_comment, + '||', + // We use escape sequence to tell the scanner if we're currently inside a string or template string, in which case + // it should NOT parse html comments. + $.escape_sequence, ], extras: $ => [ $.comment, + $.html_comment, /[\s\p{Zs}\uFEFF\u2028\u2029\u2060\u200B]/, ], @@ -953,25 +959,16 @@ module.exports = grammar({ )), // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 - comment: _ => token(choice( - seq('//', /.*/), - seq( - '/*', - /[^*]*\*+([^/*][^*]*\*+)*/, - '/', - ), - // https://tc39.es/ecma262/#sec-html-like-comments - seq(' is supposed to have nothing before it on the same line - // except for comments and whitespace, but that is difficult to express, - // and in general tree sitter grammars tend to prefer to be overly - // permissive anyway. - // - // This approach does not appear to cause problems in practice. - seq('-->', /.*/), - )), + comment: $ => choice( + token(choice( + seq('//', /.*/), + seq( + '/*', + /[^*]*\*+([^/*][^*]*\*+)*/, + '/', + ), + )), + ), template_string: $ => seq( '`', diff --git a/src/scanner.c b/src/scanner.c index 36a52d3a..46995581 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -5,6 +5,9 @@ enum TokenType { AUTOMATIC_SEMICOLON, TEMPLATE_CHARS, TERNARY_QMARK, + HTML_COMMENT, + LOGICAL_OR, + ESCAPE_SEQUENCE, }; void *tree_sitter_javascript_external_scanner_create() { return NULL; } @@ -169,6 +172,45 @@ static bool scan_ternary_qmark(TSLexer *lexer) { return false; } + +static bool scan_closing_comment(TSLexer *lexer) { + + while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + skip(lexer); + } + + const char* comment_start = ""; + + if (lexer->lookahead == '<') { + for (unsigned i = 0; i < 4; i++) { + if (lexer->lookahead != comment_start[i]) { + return false; + } + advance(lexer); + } + } else if (lexer->lookahead == '-') { + for (unsigned i = 0; i < 3; i++) { + if (lexer->lookahead != comment_end[i]) { + return false; + } + advance(lexer); + } + } else { + return false; + } + + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && + lexer->lookahead != 0x2028 && lexer->lookahead != 0x2029) { + advance(lexer); + } + + lexer->result_symbol = HTML_COMMENT; + lexer->mark_end(lexer); + + return true; +} + bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { if (valid_symbols[TEMPLATE_CHARS]) { @@ -184,5 +226,9 @@ bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, return scan_ternary_qmark(lexer); } + if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE]) { + return scan_closing_comment(lexer); + } + return false; } From 809c6dd00b1e25d82871f24f3881e50d6efb93af Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:45:16 -0500 Subject: [PATCH 03/16] fix: expose string fragments inside template strings --- grammar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index 67b23db4..9128c787 100644 --- a/grammar.js +++ b/grammar.js @@ -973,7 +973,7 @@ module.exports = grammar({ template_string: $ => seq( '`', repeat(choice( - $._template_chars, + alias($._template_chars, $.string_fragment), $.escape_sequence, $.template_substitution, )), From 4b85063e955bfc6215143b8983a914414dd93aa4 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:46:07 -0500 Subject: [PATCH 04/16] fix: be more selective about where `import` is allowed --- grammar.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/grammar.js b/grammar.js index 9128c787..aea1797d 100644 --- a/grammar.js +++ b/grammar.js @@ -500,7 +500,6 @@ module.exports = grammar({ $.true, $.false, $.null, - $.import, $.object, $.array, $.function_expression, @@ -767,7 +766,7 @@ module.exports = grammar({ call_expression: $ => choice( prec('call', seq( - field('function', $.expression), + field('function', choice($.expression, $.import)), field('arguments', choice($.arguments, $.template_string)), )), prec('member', seq( @@ -789,7 +788,7 @@ module.exports = grammar({ )), member_expression: $ => prec('member', seq( - field('object', choice($.expression, $.primary_expression)), + field('object', choice($.expression, $.primary_expression, $.import)), choice('.', field('optional_chain', $.optional_chain)), field('property', choice( $.private_property_identifier, From 00c54ad2145589059350f035c4667054ec2a34cc Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:46:21 -0500 Subject: [PATCH 05/16] refactor: sequence expressions shouldn't be recursive --- grammar.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/grammar.js b/grammar.js index aea1797d..19526aff 100644 --- a/grammar.js +++ b/grammar.js @@ -902,11 +902,7 @@ module.exports = grammar({ ), )), - sequence_expression: $ => seq( - field('left', $.expression), - ',', - field('right', choice($.sequence_expression, $.expression)), - ), + sequence_expression: $ => prec.right(commaSep1($.expression)), // // Primitives From 4e6081e4fd644b46dfdf68d286cc599d96d43577 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:46:33 -0500 Subject: [PATCH 06/16] fix: allow bare semicolons in classes --- grammar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/grammar.js b/grammar.js index 19526aff..2d7082c4 100644 --- a/grammar.js +++ b/grammar.js @@ -1120,6 +1120,7 @@ module.exports = grammar({ seq(field('member', $.field_definition), $._semicolon), field('member', $.class_static_block), field('template', $.glimmer_template), + ';', )), '}', ), From c83b3019098ce33c34b7c99ea143656a7e2c134e Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:46:39 -0500 Subject: [PATCH 07/16] fix: allow let as a reserved identifier --- grammar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grammar.js b/grammar.js index 2d7082c4..fc5291e4 100644 --- a/grammar.js +++ b/grammar.js @@ -84,6 +84,7 @@ module.exports = grammar({ [$.primary_expression, $.statement_block, 'object'], [$.import_statement, $.import], [$.export_statement, $.primary_expression], + [$.lexical_declaration, $.primary_expression], ], conflicts: $ => [ @@ -1204,6 +1205,7 @@ module.exports = grammar({ 'async', 'static', 'export', + 'let', ), _semicolon: $ => choice($._automatic_semicolon, ';'), From 3828a537c2449a2c5dc72bc0d68646fc068e53e7 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:47:36 -0500 Subject: [PATCH 08/16] fix: don't parse ternary qmarks aggressively; wait for comments to be parsed instead --- src/scanner.c | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/scanner.c b/src/scanner.c index 46995581..094bb9ec 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -40,7 +40,7 @@ static bool scan_template_chars(TSLexer *lexer) { } } -static bool scan_whitespace_and_comments(TSLexer *lexer) { +static bool scan_whitespace_and_comments(TSLexer *lexer, bool* scanned_comment) { for (;;) { while (iswspace(lexer->lookahead)) { skip(lexer); @@ -55,6 +55,7 @@ static bool scan_whitespace_and_comments(TSLexer *lexer) { lexer->lookahead != 0x2029) { skip(lexer); } + *scanned_comment = true; } else if (lexer->lookahead == '*') { skip(lexer); while (lexer->lookahead != 0) { @@ -62,6 +63,7 @@ static bool scan_whitespace_and_comments(TSLexer *lexer) { skip(lexer); if (lexer->lookahead == '/') { skip(lexer); + *scanned_comment = true; break; } } else { @@ -77,12 +79,17 @@ static bool scan_whitespace_and_comments(TSLexer *lexer) { } } -static bool scan_automatic_semicolon(TSLexer *lexer) { +static bool scan_automatic_semicolon(TSLexer *lexer, bool* scanned_comment) { lexer->result_symbol = AUTOMATIC_SEMICOLON; lexer->mark_end(lexer); for (;;) { if (lexer->lookahead == 0) return true; + if (lexer->lookahead == '/') { + if (!scan_whitespace_and_comments(lexer, scanned_comment)) { + return false; + } + } if (lexer->lookahead == '}') return true; if (lexer->is_at_included_range_start(lexer)) return true; if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) break; @@ -92,7 +99,9 @@ static bool scan_automatic_semicolon(TSLexer *lexer) { skip(lexer); - if (!scan_whitespace_and_comments(lexer)) return false; + if (!scan_whitespace_and_comments(lexer, scanned_comment)) { + return false; + } switch (lexer->lookahead) { case ',': @@ -217,8 +226,9 @@ bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, if (valid_symbols[AUTOMATIC_SEMICOLON]) return false; return scan_template_chars(lexer); } else if (valid_symbols[AUTOMATIC_SEMICOLON]) { - bool ret = scan_automatic_semicolon(lexer); - if (!ret && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') + bool scanned_comment = false; + bool ret = scan_automatic_semicolon(lexer, &scanned_comment); + if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') return scan_ternary_qmark(lexer); return ret; } From d33b21b0cd88a038aee006258fca9ace4a9a4818 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:47:51 -0500 Subject: [PATCH 09/16] chore: update tests --- test/corpus/expressions.txt | 1764 ++++++++++++++++++++++++----------- test/corpus/statements.txt | 29 +- 2 files changed, 1252 insertions(+), 541 deletions(-) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 229c8663..590f8a6b 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -15,16 +15,29 @@ line'; (program (expression_statement (string - (string_fragment) (escape_sequence) (string_fragment) - (escape_sequence) (string_fragment))) + (string_fragment) + (escape_sequence) + (string_fragment) + (escape_sequence) + (string_fragment))) (expression_statement - (string - (string_fragment) (escape_sequence) (string_fragment) - (escape_sequence) (string_fragment))) - (expression_statement (string (escape_sequence))) - (expression_statement (string (escape_sequence))) + (string + (string_fragment) + (escape_sequence) + (string_fragment) + (escape_sequence) + (string_fragment))) + (expression_statement + (string + (escape_sequence))) + (expression_statement + (string + (escape_sequence))) (expression_statement - (string (string_fragment) (escape_sequence) (string_fragment)))) + (string + (string_fragment) + (escape_sequence) + (string_fragment)))) ============================================ Template strings @@ -60,32 +73,81 @@ Template strings ---- (program - (expression_statement (template_string)) - (expression_statement (template_string)) - (expression_statement (template_string - (template_substitution - (binary_expression (number) (number))) - (template_substitution (sequence_expression - (binary_expression (number) (number)) - (binary_expression (number) (number)))))) - (expression_statement (template_string)) - (expression_statement (template_string - (template_substitution (number)))) - (expression_statement (template_string)) - (expression_statement (template_string)) - (expression_statement (template_string - (template_substitution (string (string_fragment))) - (template_substitution (string (string_fragment))))) - (expression_statement (template_string (escape_sequence))) - (expression_statement (template_string - (escape_sequence) - (template_substitution (call_expression - (member_expression (identifier) (property_identifier)) - (arguments (string (string_fragment))))) - (escape_sequence) - (template_substitution (identifier)))) - (expression_statement (template_string (escape_sequence))) - (expression_statement (template_string))) + (expression_statement + (template_string + (string_fragment))) + (expression_statement + (template_string + (string_fragment))) + (expression_statement + (template_string + (string_fragment) + (template_substitution + (binary_expression + (number) + (number))) + (string_fragment) + (template_substitution + (sequence_expression + (binary_expression + (number) + (number)) + (binary_expression + (number) + (number)))) + (string_fragment))) + (expression_statement + (template_string + (string_fragment))) + (expression_statement + (template_string + (string_fragment) + (template_substitution + (number)))) + (expression_statement + (template_string + (string_fragment))) + (expression_statement + (template_string + (string_fragment))) + (expression_statement + (template_string + (string_fragment) + (template_substitution + (string + (string_fragment))) + (string_fragment) + (template_substitution + (string + (string_fragment))) + (string_fragment))) + (expression_statement + (template_string + (escape_sequence))) + (expression_statement + (template_string + (string_fragment) + (escape_sequence) + (string_fragment) + (template_substitution + (call_expression + (member_expression + (identifier) + (property_identifier)) + (arguments + (string + (string_fragment))))) + (escape_sequence) + (string_fragment) + (template_substitution + (identifier)) + (string_fragment))) + (expression_statement + (template_string + (escape_sequence))) + (expression_statement + (template_string + (string_fragment)))) ============================================ Function calls with template strings @@ -96,7 +158,11 @@ f `hello`; --- (program - (expression_statement (call_expression (identifier) (template_string)))) + (expression_statement + (call_expression + (identifier) + (template_string + (string_fragment))))) ============================================ Numbers @@ -113,13 +179,20 @@ Numbers --- (program - (expression_statement (number)) - (expression_statement (number)) - (expression_statement (number)) - (expression_statement (number)) - (expression_statement (number)) - (expression_statement (number)) - (expression_statement (number))) + (expression_statement + (number)) + (expression_statement + (number)) + (expression_statement + (number)) + (expression_statement + (number)) + (expression_statement + (number)) + (expression_statement + (number)) + (expression_statement + (number))) ============================================ Variables @@ -133,10 +206,14 @@ $_; --- (program - (expression_statement (identifier)) - (expression_statement (identifier)) - (expression_statement (identifier)) - (expression_statement (identifier))) + (expression_statement + (identifier)) + (expression_statement + (identifier)) + (expression_statement + (identifier)) + (expression_statement + (identifier))) ============================================ Multi-line variable declarations @@ -150,9 +227,15 @@ var a = b (program (variable_declaration - (variable_declarator (identifier) (identifier)) - (variable_declarator (identifier) (identifier)) - (variable_declarator (identifier) (identifier)))) + (variable_declarator + (identifier) + (identifier)) + (variable_declarator + (identifier) + (identifier)) + (variable_declarator + (identifier) + (identifier)))) ============================================ Booleans @@ -167,11 +250,16 @@ false; --- (program - (expression_statement (this)) - (expression_statement (null)) - (expression_statement (undefined)) - (expression_statement (true)) - (expression_statement (false))) + (expression_statement + (this)) + (expression_statement + (null)) + (expression_statement + (undefined)) + (expression_statement + (true)) + (expression_statement + (false))) ============================================ Regexps @@ -188,13 +276,32 @@ Regexps --- (program - (expression_statement (regex (regex_pattern))) - (expression_statement (regex (regex_pattern) (regex_flags))) - (expression_statement (regex (regex_pattern) (regex_flags))) - (expression_statement (regex (regex_pattern) (regex_flags))) - (expression_statement (regex (regex_pattern) (regex_flags))) - (expression_statement (regex (regex_pattern) (regex_flags))) - (expression_statement (regex (regex_pattern)))) + (expression_statement + (regex + (regex_pattern))) + (expression_statement + (regex + (regex_pattern) + (regex_flags))) + (expression_statement + (regex + (regex_pattern) + (regex_flags))) + (expression_statement + (regex + (regex_pattern) + (regex_flags))) + (expression_statement + (regex + (regex_pattern) + (regex_flags))) + (expression_statement + (regex + (regex_pattern) + (regex_flags))) + (expression_statement + (regex + (regex_pattern)))) ============================================ Comments take precedence over regexes @@ -206,7 +313,13 @@ Comments take precedence over regexes --- -(program (expression_statement (ternary_expression (identifier) (comment) (identifier) (identifier)))) +(program + (expression_statement + (ternary_expression + (identifier) + (comment) + (identifier) + (identifier)))) ============================================ Objects @@ -229,16 +342,37 @@ Objects (program (statement_block) (empty_statement) - (expression_statement (object - (pair (property_identifier) (string (string_fragment))))) - (expression_statement (object - (pair (property_identifier) (string (string_fragment))) - (pair (string (string_fragment)) (identifier)) - (pair (number) (number)))) - (expression_statement (object - (pair (property_identifier) (identifier)))) - (expression_statement (object - (method_definition (computed_property_name (identifier)) (formal_parameters) (statement_block))))) + (expression_statement + (object + (pair + (property_identifier) + (string + (string_fragment))))) + (expression_statement + (object + (pair + (property_identifier) + (string + (string_fragment))) + (pair + (string + (string_fragment)) + (identifier)) + (pair + (number) + (number)))) + (expression_statement + (object + (pair + (property_identifier) + (identifier)))) + (expression_statement + (object + (method_definition + (computed_property_name + (identifier)) + (formal_parameters) + (statement_block))))) ============================================ Objects with shorthand properties @@ -250,12 +384,18 @@ y = {a,}; --- (program - (expression_statement (assignment_expression - (identifier) - (object (shorthand_property_identifier) (shorthand_property_identifier) (shorthand_property_identifier)))) - (expression_statement (assignment_expression - (identifier) - (object (shorthand_property_identifier))))) + (expression_statement + (assignment_expression + (identifier) + (object + (shorthand_property_identifier) + (shorthand_property_identifier) + (shorthand_property_identifier)))) + (expression_statement + (assignment_expression + (identifier) + (object + (shorthand_property_identifier))))) ============================================ Objects with method definitions @@ -280,33 +420,49 @@ Objects with method definitions --- (program - (expression_statement (object - (pair (property_identifier) (true)) - (method_definition - (property_identifier) - (formal_parameters (identifier) (identifier)) - (statement_block - (return_statement (binary_expression (identifier) (identifier))))) - (method_definition - (property_identifier) - (formal_parameters) - (statement_block - (return_statement (identifier)))) - (method_definition - (property_identifier) - (formal_parameters (identifier)) - (statement_block - (expression_statement (assignment_expression (identifier) (identifier))))) - (method_definition - (property_identifier) - (formal_parameters) - (statement_block - (expression_statement (yield_expression (identifier))))) - (method_definition - (property_identifier) - (formal_parameters) - (statement_block - (return_statement (number))))))) + (expression_statement + (object + (pair + (property_identifier) + (true)) + (method_definition + (property_identifier) + (formal_parameters + (identifier) + (identifier)) + (statement_block + (return_statement + (binary_expression + (identifier) + (identifier))))) + (method_definition + (property_identifier) + (formal_parameters) + (statement_block + (return_statement + (identifier)))) + (method_definition + (property_identifier) + (formal_parameters + (identifier)) + (statement_block + (expression_statement + (assignment_expression + (identifier) + (identifier))))) + (method_definition + (property_identifier) + (formal_parameters) + (statement_block + (expression_statement + (yield_expression + (identifier))))) + (method_definition + (property_identifier) + (formal_parameters) + (statement_block + (return_statement + (number))))))) ============================================ Objects with reserved words for keys @@ -324,23 +480,32 @@ Objects with reserved words for keys --- (program - (expression_statement (object - (method_definition - (property_identifier) - (formal_parameters) - (statement_block)) - (method_definition - (property_identifier) - (formal_parameters) - (statement_block)) - (pair - (property_identifier) - (function (formal_parameters) (statement_block))) - (pair - (property_identifier) - (function (formal_parameters) (statement_block))) - (pair (property_identifier) (true)) - (pair (property_identifier) (true))))) + (expression_statement + (object + (method_definition + (property_identifier) + (formal_parameters) + (statement_block)) + (method_definition + (property_identifier) + (formal_parameters) + (statement_block)) + (pair + (property_identifier) + (function_expression + (formal_parameters) + (statement_block))) + (pair + (property_identifier) + (function_expression + (formal_parameters) + (statement_block))) + (pair + (property_identifier) + (true)) + (pair + (property_identifier) + (true))))) ============================================ Classes @@ -380,33 +545,55 @@ class Foo extends require('another-class') { (class_declaration (identifier) (class_body - (field_definition (private_property_identifier)) + (field_definition + (private_property_identifier)) (method_definition (property_identifier) - (formal_parameters (identifier)) - (statement_block (return_statement (identifier)))) + (formal_parameters + (identifier)) + (statement_block + (return_statement + (identifier)))) (method_definition (property_identifier) - (formal_parameters (identifier)) - (statement_block (return_statement (identifier)))) + (formal_parameters + (identifier)) + (statement_block + (return_statement + (identifier)))) (method_definition (property_identifier) - (formal_parameters (identifier)) - (statement_block (return_statement (identifier)))) + (formal_parameters + (identifier)) + (statement_block + (return_statement + (identifier)))) (method_definition (private_property_identifier) - (formal_parameters (identifier)) - (statement_block (return_statement (member_expression (this) (private_property_identifier))))))) - + (formal_parameters + (identifier)) + (statement_block + (return_statement + (member_expression + (this) + (private_property_identifier))))))) (class_declaration (identifier) - (class_heritage (call_expression (identifier) (arguments (string (string_fragment))))) + (class_heritage + (call_expression + (identifier) + (arguments + (string + (string_fragment))))) (class_body (method_definition (property_identifier) (formal_parameters) (statement_block - (expression_statement (call_expression (super) (arguments))))) + (expression_statement + (call_expression + (super) + (arguments))))) (class_static_block (statement_block (expression_statement @@ -420,13 +607,28 @@ class Foo extends require('another-class') { (property_identifier) (formal_parameters) (statement_block - (expression_statement (call_expression (member_expression (super) (property_identifier)) (arguments))) - (expression_statement (call_expression (member_expression (this) (private_property_identifier)) (arguments))))) + (expression_statement + (call_expression + (member_expression + (super) + (property_identifier)) + (arguments))) + (expression_statement + (call_expression + (member_expression + (this) + (private_property_identifier)) + (arguments))))) (method_definition (private_property_identifier) (formal_parameters) (statement_block - (expression_statement (call_expression (member_expression (super) (property_identifier)) (arguments)))))))) + (expression_statement + (call_expression + (member_expression + (super) + (property_identifier)) + (arguments)))))))) ============================================ Classes with reserved words as methods @@ -471,14 +673,18 @@ class Bar { (class_declaration (identifier) (class_body - (field_definition (property_identifier) (number)))) + (field_definition + (property_identifier) + (number)))) (class_declaration (identifier) (class_body (method_definition (property_identifier) (formal_parameters) - (statement_block (return_statement (number))))))) + (statement_block + (return_statement + (number))))))) ============================================ Private Class Property Fields @@ -498,17 +704,23 @@ class Bar { (class_declaration (identifier) (class_body - (field_definition (private_property_identifier) (number)))) + (field_definition + (private_property_identifier) + (number)))) (class_declaration (identifier) (class_body - (field_definition (private_property_identifier)) + (field_definition + (private_property_identifier)) (method_definition (property_identifier) - (formal_parameters (identifier)) + (formal_parameters + (identifier)) (statement_block (return_statement - (binary_expression (private_property_identifier) (identifier)))))))) + (binary_expression + (private_property_identifier) + (identifier)))))))) ============================================ Class Decorators @@ -528,14 +740,20 @@ class Foo { (program (class_declaration - (decorator (identifier)) - (decorator (identifier)) + (decorator + (identifier)) + (decorator + (identifier)) (identifier) (class_body (method_definition - (decorator (call_expression - (member_expression (identifier) (property_identifier)) - (arguments (identifier)))) + (decorator + (call_expression + (member_expression + (identifier) + (property_identifier)) + (arguments + (identifier)))) (property_identifier) (formal_parameters) (statement_block)) @@ -543,7 +761,8 @@ class Foo { (decorator (identifier)) (property_identifier) - (string (string_fragment)))))) + (string + (string_fragment)))))) ============================================ Arrays @@ -559,12 +778,29 @@ Arrays --- (program - (expression_statement (array)) - (expression_statement (array (string (string_fragment)))) - (expression_statement (array (string (string_fragment)))) - (expression_statement (array (string (string_fragment)) (identifier))) - (expression_statement (array (identifier))) - (expression_statement (array (assignment_expression (identifier) (number))))) + (expression_statement + (array)) + (expression_statement + (array + (string + (string_fragment)))) + (expression_statement + (array + (string + (string_fragment)))) + (expression_statement + (array + (string + (string_fragment)) + (identifier))) + (expression_statement + (array + (identifier))) + (expression_statement + (array + (assignment_expression + (identifier) + (number))))) ============================================ Functions @@ -585,34 +821,48 @@ Functions --- (program - (expression_statement (array - (function - (formal_parameters) - (statement_block)) - (function - (formal_parameters (identifier) (rest_pattern (identifier))) - (statement_block - (expression_statement (identifier)))) - (function - (identifier) - (formal_parameters) - (statement_block)) - (function - (identifier) - (formal_parameters (identifier)) - (statement_block)) - (function - (identifier) - (formal_parameters (identifier) (identifier)) - (statement_block)) - (function - (identifier) - (formal_parameters (identifier)) - (statement_block)) - (function - (identifier) - (formal_parameters (rest_pattern (array_pattern (assignment_pattern (identifier) (identifier))))) - (statement_block))))) + (expression_statement + (array + (function_expression + (formal_parameters) + (statement_block)) + (function_expression + (formal_parameters + (identifier) + (rest_pattern + (identifier))) + (statement_block + (expression_statement + (identifier)))) + (function_expression + (identifier) + (formal_parameters) + (statement_block)) + (function_expression + (identifier) + (formal_parameters + (identifier)) + (statement_block)) + (function_expression + (identifier) + (formal_parameters + (identifier) + (identifier)) + (statement_block)) + (function_expression + (identifier) + (formal_parameters + (identifier)) + (statement_block)) + (function_expression + (identifier) + (formal_parameters + (rest_pattern + (array_pattern + (assignment_pattern + (identifier) + (identifier))))) + (statement_block))))) =================================================== Arrow functions @@ -632,58 +882,89 @@ async => async + 1; --- (program - (expression_statement (arrow_function - (identifier) - (number))) - (expression_statement (arrow_function - (formal_parameters) - (number))) - (expression_statement (arrow_function - (formal_parameters (identifier) (identifier)) - (number))) - (expression_statement (arrow_function - (formal_parameters (identifier) (identifier)) - (statement_block - (return_statement (identifier))))) - (expression_statement (arrow_function - (formal_parameters (identifier)) - (number))) - (expression_statement (arrow_function - (formal_parameters (identifier) (identifier)) - (number))) - (expression_statement (arrow_function - (formal_parameters (identifier) (identifier)) (number))) - (expression_statement (arrow_function - (identifier) - (binary_expression (identifier) (number))))) - -============================================ -Generator Functions -============================================ - -[ - function *() {}, - function *generateStuff(arg1, arg2) { - yield; - yield arg2; - yield * foo(); - } -] - ---- - -(program - (expression_statement (array - (generator_function - (formal_parameters) - (statement_block)) - (generator_function + (expression_statement + (arrow_function (identifier) - (formal_parameters (identifier) (identifier)) - (statement_block - (expression_statement (yield_expression)) - (expression_statement (yield_expression (identifier))) - (expression_statement (yield_expression (call_expression (identifier) (arguments))))))))) + (number))) + (expression_statement + (arrow_function + (formal_parameters) + (number))) + (expression_statement + (arrow_function + (formal_parameters + (identifier) + (identifier)) + (number))) + (expression_statement + (arrow_function + (formal_parameters + (identifier) + (identifier)) + (statement_block + (return_statement + (identifier))))) + (expression_statement + (arrow_function + (formal_parameters + (identifier)) + (number))) + (expression_statement + (arrow_function + (formal_parameters + (identifier) + (identifier)) + (number))) + (expression_statement + (arrow_function + (formal_parameters + (identifier) + (identifier)) + (number))) + (expression_statement + (arrow_function + (identifier) + (binary_expression + (identifier) + (number))))) + +============================================ +Generator Functions +============================================ + +[ + function *() {}, + function *generateStuff(arg1, arg2) { + yield; + yield arg2; + yield * foo(); + } +] + +--- + +(program + (expression_statement + (array + (generator_function + (formal_parameters) + (statement_block)) + (generator_function + (identifier) + (formal_parameters + (identifier) + (identifier)) + (statement_block + (expression_statement + (yield_expression)) + (expression_statement + (yield_expression + (identifier))) + (expression_statement + (yield_expression + (call_expression + (identifier) + (arguments))))))))) ============================================ Function parameters with default values @@ -698,10 +979,17 @@ function a({b}, c = d, e = f, async = true) { (function_declaration (identifier) (formal_parameters - (object_pattern (shorthand_property_identifier_pattern)) - (assignment_pattern (identifier) (identifier)) - (assignment_pattern (identifier) (identifier)) - (assignment_pattern (identifier) (true))) + (object_pattern + (shorthand_property_identifier_pattern)) + (assignment_pattern + (identifier) + (identifier)) + (assignment_pattern + (identifier) + (identifier)) + (assignment_pattern + (identifier) + (true))) (statement_block))) ============================================ @@ -715,9 +1003,19 @@ x["some-string"]; --- (program - (expression_statement (member_expression (identifier) (property_identifier))) - (expression_statement (subscript_expression (identifier) (identifier))) - (expression_statement (subscript_expression (identifier) (string (string_fragment))))) + (expression_statement + (member_expression + (identifier) + (property_identifier))) + (expression_statement + (subscript_expression + (identifier) + (identifier))) + (expression_statement + (subscript_expression + (identifier) + (string + (string_fragment))))) ============================================ Chained Property access @@ -729,18 +1027,27 @@ return returned.promise() --- -(program (return_statement - (call_expression - (member_expression - (call_expression +(program + (return_statement + (call_expression + (member_expression + (call_expression + (member_expression + (call_expression + (member_expression + (identifier) + (property_identifier)) + (arguments)) + (property_identifier)) + (arguments + (member_expression + (identifier) + (property_identifier)))) + (property_identifier)) + (arguments (member_expression - (call_expression - (member_expression (identifier) (property_identifier)) - (arguments)) - (property_identifier)) - (arguments (member_expression (identifier) (property_identifier)))) - (property_identifier)) - (arguments (member_expression (identifier) (property_identifier)))))) + (identifier) + (property_identifier)))))) ============================================ Chained callbacks @@ -758,19 +1065,34 @@ return this.map(function (a) { --- - -(program (return_statement - (call_expression - (member_expression - (call_expression - (member_expression (this) (property_identifier)) - (arguments - (function (formal_parameters (identifier)) (statement_block - (return_statement (member_expression (identifier) (property_identifier))))))) +(program + (return_statement + (call_expression + (member_expression + (call_expression + (member_expression + (this) + (property_identifier)) + (arguments + (function_expression + (formal_parameters + (identifier)) + (statement_block + (return_statement + (member_expression + (identifier) + (property_identifier))))))) (comment) - (property_identifier)) - (arguments (function (formal_parameters (identifier)) (statement_block - (return_statement (member_expression (identifier) (property_identifier))))))))) + (property_identifier)) + (arguments + (function_expression + (formal_parameters + (identifier)) + (statement_block + (return_statement + (member_expression + (identifier) + (property_identifier))))))))) ============================================ Function calls @@ -784,14 +1106,25 @@ function(x, y) { --- (program - (expression_statement (call_expression - (member_expression (identifier) (property_identifier)) - (arguments (identifier) (string (string_fragment))))) - (expression_statement (call_expression - (function - (formal_parameters (identifier) (identifier)) - (statement_block)) - (arguments (identifier) (identifier))))) + (expression_statement + (call_expression + (member_expression + (identifier) + (property_identifier)) + (arguments + (identifier) + (string + (string_fragment))))) + (expression_statement + (call_expression + (function_expression + (formal_parameters + (identifier) + (identifier)) + (statement_block)) + (arguments + (identifier) + (identifier))))) ============================================ Optional chaining property access @@ -804,9 +1137,14 @@ a ?. b; (program (expression_statement - (member_expression (identifier) (property_identifier))) + (member_expression + (identifier) + (property_identifier))) (expression_statement - (member_expression (identifier) (optional_chain) (property_identifier)))) + (member_expression + (identifier) + (optional_chain) + (property_identifier)))) ============================================ Optional chaining array access @@ -819,9 +1157,14 @@ a ?. [b]; (program (expression_statement - (subscript_expression (identifier) (identifier))) + (subscript_expression + (identifier) + (identifier))) (expression_statement - (subscript_expression (identifier) (optional_chain) (identifier)))) + (subscript_expression + (identifier) + (optional_chain) + (identifier)))) ============================================ Optional function calls @@ -835,17 +1178,27 @@ d.e?.(f); (program (expression_statement - (call_expression (identifier) (optional_chain) (arguments (identifier)))) + (call_expression + (identifier) + (optional_chain) + (arguments + (identifier)))) (expression_statement (call_expression - (subscript_expression (identifier) (identifier)) + (subscript_expression + (identifier) + (identifier)) (optional_chain) - (arguments (identifier)))) + (arguments + (identifier)))) (expression_statement (call_expression - (member_expression (identifier) (property_identifier)) + (member_expression + (identifier) + (property_identifier)) (optional_chain) - (arguments (identifier))))) + (arguments + (identifier))))) ============================================ Constructor calls @@ -859,18 +1212,33 @@ new new Thing; --- (program - (expression_statement (new_expression - (member_expression (identifier) (property_identifier)) - (arguments (number) (string (string_fragment))))) - (expression_statement (new_expression - (identifier))) - (expression_statement (new_expression + (expression_statement + (new_expression + (member_expression + (identifier) + (property_identifier)) + (arguments + (number) + (string + (string_fragment))))) + (expression_statement + (new_expression + (identifier))) + (expression_statement (new_expression - (member_expression (identifier) (property_identifier)) - (arguments (number))) - (arguments (string (string_fragment))))) - (expression_statement (new_expression - (new_expression (identifier))))) + (new_expression + (member_expression + (identifier) + (property_identifier)) + (arguments + (number))) + (arguments + (string + (string_fragment))))) + (expression_statement + (new_expression + (new_expression + (identifier))))) ============================================ Await Expressions @@ -884,8 +1252,12 @@ await asyncPromise; (program (expression_statement (await_expression - (call_expression (identifier) (arguments)))) - (expression_statement (await_expression (identifier)))) + (call_expression + (identifier) + (arguments)))) + (expression_statement + (await_expression + (identifier)))) ============================================ Async Functions and Methods @@ -919,20 +1291,27 @@ async function* foo() { yield 1; } (property_identifier) (formal_parameters) (statement_block)))) - (class_declaration (identifier) (class_body - (method_definition - (property_identifier) - (formal_parameters) - (statement_block)))) + (class_declaration + (identifier) + (class_body + (method_definition + (property_identifier) + (formal_parameters) + (statement_block)))) (expression_statement (arrow_function - (formal_parameters (identifier)) + (formal_parameters + (identifier)) (statement_block - (return_statement (identifier))))) + (return_statement + (identifier))))) (generator_function_declaration (identifier) - (formal_parameters) - (statement_block (expression_statement (yield_expression (number)))))) + (formal_parameters) + (statement_block + (expression_statement + (yield_expression + (number)))))) ============================================ Math operators @@ -950,24 +1329,46 @@ i + j * 3 - j % 5; --- (program - (expression_statement (update_expression (identifier))) - (expression_statement (update_expression (identifier))) - (expression_statement (binary_expression + (expression_statement + (update_expression + (identifier))) + (expression_statement + (update_expression + (identifier))) + (expression_statement (binary_expression - (identifier) - (binary_expression (identifier) (number))) - (binary_expression (identifier) (number)))) - (expression_statement (binary_expression - (binary_expression (number) (identifier)) - (number))) - (expression_statement (binary_expression - (number) - (binary_expression (identifier) (number)))) - (expression_statement (binary_expression - (number) - (binary_expression (identifier) (number)))) - (expression_statement (unary_expression (identifier))) - (expression_statement (unary_expression (identifier)))) + (binary_expression + (identifier) + (binary_expression + (identifier) + (number))) + (binary_expression + (identifier) + (number)))) + (expression_statement + (binary_expression + (binary_expression + (number) + (identifier)) + (number))) + (expression_statement + (binary_expression + (number) + (binary_expression + (identifier) + (number)))) + (expression_statement + (binary_expression + (number) + (binary_expression + (identifier) + (number)))) + (expression_statement + (unary_expression + (identifier))) + (expression_statement + (unary_expression + (identifier)))) ============================================ Boolean operators @@ -980,15 +1381,26 @@ i && j; --- (program - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression + (expression_statement (binary_expression - (unary_expression (identifier)) - (unary_expression (identifier))) + (identifier) + (identifier))) + (expression_statement (binary_expression - (unary_expression (identifier)) - (unary_expression (identifier)))))) + (identifier) + (identifier))) + (expression_statement + (binary_expression + (binary_expression + (unary_expression + (identifier)) + (unary_expression + (identifier))) + (binary_expression + (unary_expression + (identifier)) + (unary_expression + (identifier)))))) ============================================ The null-coalescing operator @@ -1004,7 +1416,9 @@ x = b ?? c(); (identifier) (binary_expression (identifier) - (call_expression (identifier) (arguments)))))) + (call_expression + (identifier) + (arguments)))))) ============================================ Bitwise operators @@ -1020,14 +1434,32 @@ i | j; --- (program - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression - (unary_expression (identifier)) - (unary_expression (identifier))))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (unary_expression + (identifier)) + (unary_expression + (identifier))))) ============================================ Relational operators @@ -1045,14 +1477,38 @@ x > y; --- (program - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier))) - (expression_statement (binary_expression (identifier) (identifier)))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier)))) ============================================== Assignments @@ -1069,27 +1525,41 @@ x &&= 0; --- (program - (expression_statement (assignment_expression - (identifier) - (number))) - (expression_statement (assignment_expression - (member_expression (identifier) (property_identifier)) - (number))) - (expression_statement (assignment_expression - (subscript_expression (identifier) (string (string_fragment))) - (number))) - (expression_statement (assignment_expression - (identifier) - (number))) - (expression_statement (assignment_expression - (parenthesized_expression (identifier)) - (number))) - (expression_statement (augmented_assignment_expression - (parenthesized_expression (identifier)) - (number))) - (expression_statement (augmented_assignment_expression - (identifier) - (number)))) + (expression_statement + (assignment_expression + (identifier) + (number))) + (expression_statement + (assignment_expression + (member_expression + (identifier) + (property_identifier)) + (number))) + (expression_statement + (assignment_expression + (subscript_expression + (identifier) + (string + (string_fragment))) + (number))) + (expression_statement + (assignment_expression + (identifier) + (number))) + (expression_statement + (assignment_expression + (parenthesized_expression + (identifier)) + (number))) + (expression_statement + (augmented_assignment_expression + (parenthesized_expression + (identifier)) + (number))) + (expression_statement + (augmented_assignment_expression + (identifier) + (number)))) ============================================== The comma operator @@ -1101,18 +1571,27 @@ c = {d: (3, 4 + 5, 6)}; --- (program - (expression_statement (sequence_expression - (assignment_expression (identifier) (number)) - (assignment_expression (identifier) (number)))) (expression_statement - (assignment_expression (identifier) (object - (pair - (property_identifier) - (parenthesized_expression (sequence_expression - (number) - (sequence_expression - (binary_expression (number) (number)) - (number))))))))) + (sequence_expression + (assignment_expression + (identifier) + (number)) + (assignment_expression + (identifier) + (number)))) + (expression_statement + (assignment_expression + (identifier) + (object + (pair + (property_identifier) + (parenthesized_expression + (sequence_expression + (number) + (binary_expression + (number) + (number)) + (number)))))))) ============================================== Ternaries @@ -1167,8 +1646,13 @@ x instanceof String; --- (program - (expression_statement (unary_expression (identifier))) - (expression_statement (binary_expression (identifier) (identifier)))) + (expression_statement + (unary_expression + (identifier))) + (expression_statement + (binary_expression + (identifier) + (identifier)))) ============================================ The delete operator @@ -1181,10 +1665,18 @@ true ? delete thing.prop : null; (program (expression_statement - (unary_expression (subscript_expression (identifier) (string (string_fragment))))) + (unary_expression + (subscript_expression + (identifier) + (string + (string_fragment))))) (expression_statement - (ternary_expression (true) - (unary_expression (member_expression (identifier) (property_identifier))) + (ternary_expression + (true) + (unary_expression + (member_expression + (identifier) + (property_identifier))) (null)))) ============================================ @@ -1195,9 +1687,14 @@ a = void b() --- -(program (expression_statement (assignment_expression - (identifier) - (unary_expression (call_expression (identifier) (arguments)))))) +(program + (expression_statement + (assignment_expression + (identifier) + (unary_expression + (call_expression + (identifier) + (arguments)))))) ============================================== Augmented assignments @@ -1217,23 +1714,43 @@ c <<= 1; (program (expression_statement - (augmented_assignment_expression (identifier) (number))) + (augmented_assignment_expression + (identifier) + (number))) (expression_statement - (augmented_assignment_expression (identifier) (number))) + (augmented_assignment_expression + (identifier) + (number))) (expression_statement - (augmented_assignment_expression (identifier) (number))) + (augmented_assignment_expression + (identifier) + (number))) (expression_statement - (augmented_assignment_expression (identifier) (number))) + (augmented_assignment_expression + (identifier) + (number))) (expression_statement - (augmented_assignment_expression (member_expression (identifier) (property_identifier)) (number))) + (augmented_assignment_expression + (member_expression + (identifier) + (property_identifier)) + (number))) (expression_statement - (augmented_assignment_expression (identifier) (number))) + (augmented_assignment_expression + (identifier) + (number))) (expression_statement - (augmented_assignment_expression (identifier) (number))) + (augmented_assignment_expression + (identifier) + (number))) (expression_statement - (augmented_assignment_expression (identifier) (number))) + (augmented_assignment_expression + (identifier) + (number))) (expression_statement - (augmented_assignment_expression (identifier) (number)))) + (augmented_assignment_expression + (identifier) + (number)))) ============================================== Operator precedence @@ -1252,39 +1769,75 @@ await a || b; --- (program - (expression_statement (binary_expression - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)))) - (expression_statement (assignment_expression - (member_expression (identifier) (property_identifier)) - (ternary_expression (identifier) (identifier) (identifier)))) - (expression_statement (binary_expression + (expression_statement (binary_expression - (identifier) - (call_expression (identifier) (arguments (identifier)))) - (identifier))) - (expression_statement (binary_expression + (binary_expression + (identifier) + (identifier)) + (binary_expression + (identifier) + (identifier)))) + (expression_statement + (assignment_expression + (member_expression + (identifier) + (property_identifier)) + (ternary_expression + (identifier) + (identifier) + (identifier)))) + (expression_statement + (binary_expression + (binary_expression + (identifier) + (call_expression + (identifier) + (arguments + (identifier)))) + (identifier))) + (expression_statement + (binary_expression + (binary_expression + (identifier) + (new_expression + (identifier) + (arguments + (identifier)))) + (identifier))) + (expression_statement + (binary_expression + (binary_expression + (unary_expression + (identifier)) + (identifier)) + (binary_expression + (identifier) + (identifier)))) + (expression_statement (binary_expression (identifier) - (new_expression (identifier) (arguments (identifier)))) - (identifier))) - (expression_statement (binary_expression + (binary_expression + (identifier) + (identifier)))) + (expression_statement (binary_expression - (unary_expression (identifier)) - (identifier)) - (binary_expression (identifier) (identifier)))) - (expression_statement (binary_expression - (identifier) - (binary_expression (identifier) (identifier)))) - (expression_statement (binary_expression - (binary_expression (identifier) (identifier)) - (identifier))) - (expression_statement (binary_expression - (binary_expression (identifier) (identifier)) - (binary_expression (identifier) (identifier)))) - (expression_statement (binary_expression - (await_expression (identifier)) - (identifier)))) + (binary_expression + (identifier) + (identifier)) + (identifier))) + (expression_statement + (binary_expression + (binary_expression + (identifier) + (identifier)) + (binary_expression + (identifier) + (identifier)))) + (expression_statement + (binary_expression + (await_expression + (identifier)) + (identifier)))) ============================================== Simple JSX elements @@ -1297,24 +1850,59 @@ b = ; --- (program - (expression_statement (assignment_expression - (identifier) - (jsx_self_closing_element + (expression_statement + (assignment_expression + (identifier) + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment))) + (jsx_attribute + (property_identifier) + (jsx_expression + (number)))))) + (expression_statement + (assignment_expression (identifier) - (jsx_attribute (property_identifier) (string (string_fragment))) - (jsx_attribute (property_identifier) (jsx_expression (number)))))) - (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element (member_expression (identifier) (property_identifier))) - (jsx_text) (jsx_element - (jsx_opening_element (identifier)) + (jsx_opening_element + (member_expression + (identifier) + (property_identifier))) (jsx_text) - (jsx_closing_element (identifier))) - (jsx_text) - (jsx_closing_element (member_expression (identifier) (property_identifier)))))) - (expression_statement (assignment_expression (identifier) (jsx_element (jsx_opening_element (member_expression (member_expression (member_expression (identifier) (property_identifier)) (property_identifier)) (property_identifier))) (jsx_closing_element (member_expression (member_expression (member_expression (identifier) (property_identifier)) (property_identifier)) (property_identifier))))))) + (jsx_element + (jsx_opening_element + (identifier)) + (jsx_text) + (jsx_closing_element + (identifier))) + (jsx_text) + (jsx_closing_element + (member_expression + (identifier) + (property_identifier)))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element + (member_expression + (member_expression + (member_expression + (identifier) + (property_identifier)) + (property_identifier)) + (property_identifier))) + (jsx_closing_element + (member_expression + (member_expression + (member_expression + (identifier) + (property_identifier)) + (property_identifier)) + (property_identifier))))))) ============================================== Anonymous JSX element @@ -1336,11 +1924,13 @@ a = <>; (assignment_expression (identifier) (jsx_element - (jsx_opening_element (identifier)) + (jsx_opening_element + (identifier)) (jsx_element (jsx_opening_element) (jsx_closing_element)) - (jsx_closing_element (identifier)))))) + (jsx_closing_element + (identifier)))))) ============================================== Expressions within JSX elements @@ -1355,35 +1945,54 @@ b = --- (program - (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element (identifier) - (jsx_attribute (property_identifier)) - (jsx_attribute (property_identifier) (jsx_expression (identifier)))) - (jsx_text) - (jsx_expression (identifier)) - (jsx_text) - (jsx_closing_element (identifier))))) - (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element (identifier)) - (jsx_expression (spread_element (identifier))) - (jsx_closing_element (identifier))))) - (expression_statement (assignment_expression - (identifier) - (jsx_self_closing_element + (expression_statement + (assignment_expression (identifier) - (jsx_expression (spread_element (identifier)))))) - (expression_statement (assignment_expression - (identifier) - (jsx_element - (jsx_opening_element + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier)) + (jsx_attribute + (property_identifier) + (jsx_expression + (identifier)))) + (jsx_text) + (jsx_expression + (identifier)) + (jsx_text) + (jsx_closing_element + (identifier))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element + (identifier)) + (jsx_expression + (spread_element + (identifier))) + (jsx_closing_element + (identifier))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_self_closing_element (identifier) - (jsx_expression (spread_element (identifier)))) - (jsx_closing_element (identifier)))))) - + (jsx_expression + (spread_element + (identifier)))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element + (identifier) + (jsx_expression + (spread_element + (identifier)))) + (jsx_closing_element + (identifier)))))) ============================================== Expressions with rest elements @@ -1396,9 +2005,21 @@ foo = [...[bar] = [baz]] (program (expression_statement - (call_expression (identifier) (arguments (spread_element (identifier))))) + (call_expression + (identifier) + (arguments + (spread_element + (identifier))))) (expression_statement - (assignment_expression (identifier) (array (spread_element (assignment_expression (array_pattern (identifier)) (array (identifier)))))))) + (assignment_expression + (identifier) + (array + (spread_element + (assignment_expression + (array_pattern + (identifier)) + (array + (identifier)))))))) ============================================== Forward slashes after parenthesized expressions @@ -1413,18 +2034,35 @@ if (foo - bar) /baz/; (program (expression_statement (binary_expression - (parenthesized_expression (binary_expression (identifier) (identifier))) + (parenthesized_expression + (binary_expression + (identifier) + (identifier))) (identifier))) (if_statement - (parenthesized_expression (binary_expression (identifier) (identifier))) - (expression_statement (regex (regex_pattern)))) + (parenthesized_expression + (binary_expression + (identifier) + (identifier))) + (expression_statement + (regex + (regex_pattern)))) (expression_statement (binary_expression - (parenthesized_expression (binary_expression + (parenthesized_expression (binary_expression - (call_expression (member_expression (this) (property_identifier)) (arguments)) - (call_expression (member_expression (this) (property_identifier)) (arguments))) - (number))) + (binary_expression + (call_expression + (member_expression + (this) + (property_identifier)) + (arguments)) + (call_expression + (member_expression + (this) + (property_identifier)) + (arguments))) + (number))) (number)))) ============================================== @@ -1438,7 +2076,11 @@ Non-breaking spaces as whitespace --- -(program (comment) (comment) (comment) (comment)) +(program + (comment) + (comment) + (comment) + (comment)) ============================================== Yield expressions @@ -1453,9 +2095,13 @@ yield db.users.where('[endpoint+email]') (yield_expression (call_expression (member_expression - (member_expression (identifier) (property_identifier)) + (member_expression + (identifier) + (property_identifier)) (property_identifier)) - (arguments (string (string_fragment))))))) + (arguments + (string + (string_fragment))))))) ============================================ JSX @@ -1474,56 +2120,122 @@ i = {...children} --- (program - (variable_declaration (variable_declarator (identifier) - (jsx_element (jsx_opening_element (identifier)) (jsx_closing_element (identifier))))) - (expression_statement (assignment_expression (identifier) - (jsx_element - (jsx_opening_element (member_expression (identifier) (property_identifier))) - (jsx_closing_element (member_expression (identifier) (property_identifier)))))) - (expression_statement (assignment_expression (identifier) - (jsx_element (jsx_opening_element) (jsx_self_closing_element (identifier)) (jsx_closing_element)))) - (expression_statement (assignment_expression (identifier) - (jsx_element - (jsx_opening_element (identifier)) - (jsx_self_closing_element (identifier)) - (jsx_closing_element (identifier))))) - (expression_statement (assignment_expression (identifier) - (jsx_self_closing_element (identifier) (jsx_attribute (property_identifier))))) - (expression_statement (assignment_expression (identifier) - (jsx_self_closing_element - (identifier) - (jsx_attribute (property_identifier) (string (string_fragment))) - (jsx_attribute (property_identifier) (jsx_expression (number))) - (jsx_attribute (property_identifier) (string (string_fragment))) - (jsx_attribute (property_identifier))))) - (expression_statement (assignment_expression (identifier) - (jsx_self_closing_element - (identifier) - (jsx_attribute - (property_identifier) - (jsx_expression (member_expression (identifier) (property_identifier))))))) - (expression_statement (assignment_expression (identifier) - (jsx_element - (jsx_opening_element + (variable_declaration + (variable_declarator + (identifier) + (jsx_element + (jsx_opening_element + (identifier)) + (jsx_closing_element + (identifier))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element + (member_expression + (identifier) + (property_identifier))) + (jsx_closing_element + (member_expression + (identifier) + (property_identifier)))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element) + (jsx_self_closing_element + (identifier)) + (jsx_closing_element)))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element + (identifier)) + (jsx_self_closing_element + (identifier)) + (jsx_closing_element + (identifier))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_self_closing_element (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment))) (jsx_attribute (property_identifier) (jsx_expression - (binary_expression + (number))) + (jsx_attribute + (property_identifier) + (string + (string_fragment))) + (jsx_attribute + (property_identifier))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (jsx_expression + (member_expression + (identifier) + (property_identifier))))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier) + (jsx_expression (binary_expression - (member_expression - (member_expression (this) (property_identifier)) - (property_identifier)) - (string (string_fragment))) - (unary_expression - (member_expression - (member_expression (this) (property_identifier)) - (property_identifier))))))) - (jsx_closing_element (identifier))))) - (expression_statement (assignment_expression (identifier) - (jsx_element - (jsx_opening_element - (jsx_namespace_name (identifier) (identifier)) - (jsx_attribute (property_identifier) (jsx_expression))) - (jsx_expression (spread_element (identifier))) - (jsx_closing_element (jsx_namespace_name (identifier) (identifier))))))) + (binary_expression + (member_expression + (member_expression + (this) + (property_identifier)) + (property_identifier)) + (string + (string_fragment))) + (unary_expression + (member_expression + (member_expression + (this) + (property_identifier)) + (property_identifier))))))) + (jsx_closing_element + (identifier))))) + (expression_statement + (assignment_expression + (identifier) + (jsx_element + (jsx_opening_element + (jsx_namespace_name + (identifier) + (identifier)) + (jsx_attribute + (property_identifier) + (jsx_expression))) + (jsx_expression + (spread_element + (identifier))) + (jsx_closing_element + (jsx_namespace_name + (identifier) + (identifier))))))) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index d68491d8..f177f794 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -265,7 +265,7 @@ export { "string import" as "string export" } from 'foo'; key: (property_identifier) value: (array)))) (export_statement - value: (function + value: (function_expression parameters: (formal_parameters) body: (statement_block))) (export_statement @@ -469,10 +469,10 @@ for (var i = 0 (for_statement initializer: (expression_statement (sequence_expression - left: (assignment_expression + (assignment_expression left: (identifier) right: (number)) - right: (call_expression + (call_expression function: (identifier) arguments: (arguments)))) condition: (expression_statement @@ -563,9 +563,8 @@ for (var foo = bar in baz) {} (identifier) (sequence_expression (identifier) - (sequence_expression - (identifier) - (identifier))) + (identifier) + (identifier)) (expression_statement (call_expression (identifier) @@ -838,7 +837,7 @@ Comments (comment) (pair (property_identifier) - (function + (function_expression (formal_parameters) (statement_block)))))) @@ -873,7 +872,7 @@ var thing = { (comment) (pair (property_identifier) - (function + (function_expression (formal_parameters (identifier) (comment)) @@ -965,21 +964,21 @@ x + 1; --> for some reason you can put text after a close comment. --- (program - (comment) + (html_comment) (expression_statement (binary_expression (identifier) (identifier))) - (comment) + (html_comment) (expression_statement (binary_expression (identifier) (number))) - (comment) - (comment) - (comment) - (comment) - (comment)) + (html_comment) + (html_comment) + (html_comment) + (html_comment) + (html_comment)) ============================================ Switch statements From 116ba33b485b3bf0065d146d1317ea8c0ab6b2ec Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:48:07 -0500 Subject: [PATCH 10/16] chore: npm/npm is archived, use npm/cli --- script/known_failures.txt | 1 - script/parse-examples | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/script/known_failures.txt b/script/known_failures.txt index cff23ed3..e69de29b 100644 --- a/script/known_failures.txt +++ b/script/known_failures.txt @@ -1 +0,0 @@ -examples/npm/node_modules/slide/lib/async-map-ordered.js diff --git a/script/parse-examples b/script/parse-examples index abd61e57..36ee541a 100755 --- a/script/parse-examples +++ b/script/parse-examples @@ -25,7 +25,7 @@ function clone_repo { popd > /dev/null } -clone_repo npm npm ee147fbbca6f2707d3b16f4fa78f4c4606b2d9b1 +clone_repo npm cli 0dd03f9450e0cf57fa85ad2ef74b5a54f3c775a9 known_failures="$(cat script/known_failures.txt)" From 5eaa83c0731c26f4d5a7e6044873dc5375d09d02 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 00:48:45 -0500 Subject: [PATCH 11/16] chore: update queries --- queries/highlights.scm | 10 +++++----- queries/injections.scm | 2 +- queries/locals.scm | 2 +- queries/tags.scm | 12 ++++++------ 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/queries/highlights.scm b/queries/highlights.scm index 613a49a8..22eba447 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -23,7 +23,7 @@ ; Function and method definitions ;-------------------------------- -(function +(function_expression name: (identifier) @function) (function_declaration name: (identifier) @function) @@ -32,20 +32,20 @@ (pair key: (property_identifier) @function.method - value: [(function) (arrow_function)]) + value: [(function_expression) (arrow_function)]) (assignment_expression left: (member_expression property: (property_identifier) @function.method) - right: [(function) (arrow_function)]) + right: [(function_expression) (arrow_function)]) (variable_declarator name: (identifier) @function - value: [(function) (arrow_function)]) + value: [(function_expression) (arrow_function)]) (assignment_expression left: (identifier) @function - right: [(function) (arrow_function)]) + right: [(function_expression) (arrow_function)]) ; Function and method calls ;-------------------------- diff --git a/queries/injections.scm b/queries/injections.scm index 178188c5..3ea86fa2 100644 --- a/queries/injections.scm +++ b/queries/injections.scm @@ -7,7 +7,7 @@ (member_expression property: (property_identifier) @injection.language) ] - arguments: (template_string) @injection.content) + arguments: (template_string (string_fragment) @injection.content)) ; Parse regex syntax within regex literals diff --git a/queries/locals.scm b/queries/locals.scm index 5d680acf..4064191c 100644 --- a/queries/locals.scm +++ b/queries/locals.scm @@ -3,7 +3,7 @@ [ (statement_block) - (function) + (function_expression) (arrow_function) (function_declaration) (method_definition) diff --git a/queries/tags.scm b/queries/tags.scm index e32eaf3c..7a156e7e 100644 --- a/queries/tags.scm +++ b/queries/tags.scm @@ -25,7 +25,7 @@ (comment)* @doc . [ - (function + (function_expression name: (identifier) @name) (function_declaration name: (identifier) @name) @@ -44,7 +44,7 @@ (lexical_declaration (variable_declarator name: (identifier) @name - value: [(arrow_function) (function)]) @definition.function) + value: [(arrow_function) (function_expression)]) @definition.function) (#strip! @doc "^[\\s\\*/]+|^[\\s\\*/]$") (#select-adjacent! @doc @definition.function) ) @@ -55,7 +55,7 @@ (variable_declaration (variable_declarator name: (identifier) @name - value: [(arrow_function) (function)]) @definition.function) + value: [(arrow_function) (function_expression)]) @definition.function) (#strip! @doc "^[\\s\\*/]+|^[\\s\\*/]$") (#select-adjacent! @doc @definition.function) ) @@ -66,12 +66,12 @@ (member_expression property: (property_identifier) @name) ] - right: [(arrow_function) (function)] + right: [(arrow_function) (function_expression)] ) @definition.function (pair key: (property_identifier) @name - value: [(arrow_function) (function)]) @definition.function + value: [(arrow_function) (function_expression)]) @definition.function ( (call_expression @@ -96,4 +96,4 @@ (new_expression) (binary_expression) (call_expression) -]))) @definition.constant \ No newline at end of file +]))) @definition.constant From 5a06c43229255d5da548f2ee306d76ae5f4c63bf Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 04:22:23 -0500 Subject: [PATCH 12/16] refactor: ensure comments are parsed after automatic semicolons for better trees --- src/scanner.c | 80 +++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 62 insertions(+), 18 deletions(-) diff --git a/src/scanner.c b/src/scanner.c index 094bb9ec..d57844e8 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -30,7 +30,9 @@ static bool scan_template_chars(TSLexer *lexer) { return false; case '$': advance(lexer); - if (lexer->lookahead == '{') return has_content; + if (lexer->lookahead == '{') { + return has_content; + } break; case '\\': return has_content; @@ -79,21 +81,39 @@ static bool scan_whitespace_and_comments(TSLexer *lexer, bool* scanned_comment) } } -static bool scan_automatic_semicolon(TSLexer *lexer, bool* scanned_comment) { +static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, bool* scanned_comment) { lexer->result_symbol = AUTOMATIC_SEMICOLON; lexer->mark_end(lexer); for (;;) { - if (lexer->lookahead == 0) return true; + if (lexer->lookahead == 0) { return true; +} + if (lexer->lookahead == '/') { if (!scan_whitespace_and_comments(lexer, scanned_comment)) { return false; } + if (comment_condition && lexer->lookahead != ',') { + return true; + } + } + + if (lexer->lookahead == '}') { + return true; + } + + if (lexer->is_at_included_range_start(lexer)) { + return true; } - if (lexer->lookahead == '}') return true; - if (lexer->is_at_included_range_start(lexer)) return true; - if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) break; - if (!iswspace(lexer->lookahead)) return false; + + if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + break; + } + + if (!iswspace(lexer->lookahead)) { + return false; + } + skip(lexer); } @@ -140,17 +160,28 @@ static bool scan_automatic_semicolon(TSLexer *lexer, bool* scanned_comment) { case 'i': skip(lexer); - if (lexer->lookahead != 'n') return true; + if (lexer->lookahead != 'n') { + return true; + } skip(lexer); - if (!iswalpha(lexer->lookahead)) return false; + if (!iswalpha(lexer->lookahead)) { + return false; + } for (unsigned i = 0; i < 8; i++) { - if (lexer->lookahead != "stanceof"[i]) return true; + if (lexer->lookahead != "stanceof"[i]) { + return true; + } skip(lexer); } - if (!iswalpha(lexer->lookahead)) return false; + if (!iswalpha(lexer->lookahead)) { + return false; + } + break; + + default: break; } @@ -159,21 +190,27 @@ static bool scan_automatic_semicolon(TSLexer *lexer, bool* scanned_comment) { static bool scan_ternary_qmark(TSLexer *lexer) { for(;;) { - if (!iswspace(lexer->lookahead)) break; + if (!iswspace(lexer->lookahead)) { + break; + } skip(lexer); } if (lexer->lookahead == '?') { advance(lexer); - if (lexer->lookahead == '?') return false; + if (lexer->lookahead == '?') { + return false; + } lexer->mark_end(lexer); lexer->result_symbol = TERNARY_QMARK; if (lexer->lookahead == '.') { advance(lexer); - if (iswdigit(lexer->lookahead)) return true; + if (iswdigit(lexer->lookahead)) { + return true; + } return false; } return true; @@ -223,15 +260,22 @@ static bool scan_closing_comment(TSLexer *lexer) { bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { if (valid_symbols[TEMPLATE_CHARS]) { - if (valid_symbols[AUTOMATIC_SEMICOLON]) return false; + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + return false; + } return scan_template_chars(lexer); - } else if (valid_symbols[AUTOMATIC_SEMICOLON]) { + } + + if (valid_symbols[AUTOMATIC_SEMICOLON]) { bool scanned_comment = false; - bool ret = scan_automatic_semicolon(lexer, &scanned_comment); - if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') + bool newline_after_comment = false; + bool ret = scan_automatic_semicolon(lexer, !valid_symbols[LOGICAL_OR], &scanned_comment); + if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { return scan_ternary_qmark(lexer); + } return ret; } + if (valid_symbols[TERNARY_QMARK]) { return scan_ternary_qmark(lexer); } From 3003ef7e203b177f6446587a712bf4b8e83724eb Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 04:22:50 -0500 Subject: [PATCH 13/16] chore: generate --- src/grammar.json | 210 +- src/node-types.json | 74 +- src/parser.c | 169808 +++++++++++++++++++----------------- src/tree_sitter/parser.h | 10 +- 4 files changed, 90957 insertions(+), 79145 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 1ae9e736..f78e2766 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1746,10 +1746,6 @@ "type": "SYMBOL", "name": "null" }, - { - "type": "SYMBOL", - "name": "import" - }, { "type": "SYMBOL", "name": "object" @@ -1760,7 +1756,7 @@ }, { "type": "SYMBOL", - "name": "function" + "name": "function_expression" }, { "type": "SYMBOL", @@ -2931,7 +2927,7 @@ } ] }, - "function": { + "function_expression": { "type": "PREC", "value": "literal", "content": { @@ -3266,8 +3262,17 @@ "type": "FIELD", "name": "function", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "import" + } + ] } }, { @@ -3411,6 +3416,10 @@ { "type": "SYMBOL", "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "import" } ] } @@ -4759,38 +4768,33 @@ } }, "sequence_expression": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } } - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "sequence_expression" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - } - ] + ] + } }, "string": { "type": "CHOICE", @@ -4925,68 +4929,47 @@ } }, "comment": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { - "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { - "type": "STRING", - "value": "/" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] }, { - "type": "PATTERN", - "value": ".*" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] } ] } - ] - } + } + ] }, "template_string": { "type": "SEQ", @@ -5001,8 +4984,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_template_chars" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_chars" + }, + "named": true, + "value": "string_fragment" }, { "type": "SYMBOL", @@ -6012,6 +6000,10 @@ "type": "SYMBOL", "name": "glimmer_template" } + }, + { + "type": "STRING", + "value": ";" } ] } @@ -6444,6 +6436,10 @@ { "type": "STRING", "value": "export" + }, + { + "type": "STRING", + "value": "let" } ] }, @@ -6466,6 +6462,10 @@ "type": "SYMBOL", "name": "comment" }, + { + "type": "SYMBOL", + "name": "html_comment" + }, { "type": "PATTERN", "value": "[\\s\\p{Zs}\\uFEFF\\u2028\\u2029\\u2060\\u200B]" @@ -6680,6 +6680,16 @@ "type": "SYMBOL", "name": "primary_expression" } + ], + [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } ] ], "externals": [ @@ -6694,6 +6704,18 @@ { "type": "SYMBOL", "name": "_ternary_qmark" + }, + { + "type": "SYMBOL", + "name": "html_comment" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" } ], "inline": [ diff --git a/src/node-types.json b/src/node-types.json index 8d56c621..798bb75a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -142,7 +142,7 @@ "named": true }, { - "type": "function", + "type": "function_expression", "named": true }, { @@ -153,10 +153,6 @@ "type": "identifier", "named": true }, - { - "type": "import", - "named": true - }, { "type": "member_expression", "named": true @@ -770,6 +766,10 @@ { "type": "expression", "named": true + }, + { + "type": "import", + "named": true } ] }, @@ -976,6 +976,11 @@ } } }, + { + "type": "comment", + "named": true, + "fields": {} + }, { "type": "computed_property_name", "named": true, @@ -1469,7 +1474,7 @@ } }, { - "type": "function", + "type": "function_declaration", "named": true, "fields": { "body": { @@ -1484,7 +1489,7 @@ }, "name": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", @@ -1505,7 +1510,7 @@ } }, { - "type": "function_declaration", + "type": "function_expression", "named": true, "fields": { "body": { @@ -1520,7 +1525,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -2061,6 +2066,10 @@ { "type": "expression", "named": true + }, + { + "type": "import", + "named": true } ] }, @@ -2551,31 +2560,16 @@ { "type": "sequence_expression", "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "sequence_expression", - "named": true - } - ] - } + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] } }, { @@ -2770,6 +2764,10 @@ "type": "escape_sequence", "named": true }, + { + "type": "string_fragment", + "named": true + }, { "type": "template_substitution", "named": true @@ -3343,10 +3341,6 @@ "type": "class", "named": false }, - { - "type": "comment", - "named": true - }, { "type": "const", "named": false @@ -3415,6 +3409,10 @@ "type": "hash_bang_line", "named": true }, + { + "type": "html_comment", + "named": true + }, { "type": "identifier", "named": true diff --git a/src/parser.c b/src/parser.c index 0df68851..8704ce6d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -14,17 +14,17 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2781 -#define LARGE_STATE_COUNT 440 -#define SYMBOL_COUNT 257 +#define STATE_COUNT 2816 +#define LARGE_STATE_COUNT 464 +#define SYMBOL_COUNT 260 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 132 -#define EXTERNAL_TOKEN_COUNT 3 +#define TOKEN_COUNT 133 +#define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 38 #define MAX_ALIAS_SEQUENCE_LENGTH 7 #define PRODUCTION_ID_COUNT 107 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, sym_hash_bang_line = 2, anon_sym_export = 3, @@ -133,7 +133,7 @@ enum { sym_unescaped_double_string_fragment = 106, sym_unescaped_single_string_fragment = 107, sym_escape_sequence = 108, - sym_comment = 109, + aux_sym_comment_token1 = 109, anon_sym_BQUOTE = 110, anon_sym_DOLLAR_LBRACE = 111, anon_sym_SLASH2 = 112, @@ -156,135 +156,138 @@ enum { sym__automatic_semicolon = 129, sym__template_chars = 130, sym__ternary_qmark = 131, - sym_program = 132, - sym_export_statement = 133, - sym_namespace_export = 134, - sym_export_clause = 135, - sym_export_specifier = 136, - sym__module_export_name = 137, - sym_declaration = 138, - sym_import = 139, - sym_import_statement = 140, - sym_import_clause = 141, - sym__from_clause = 142, - sym_namespace_import = 143, - sym_named_imports = 144, - sym_import_specifier = 145, - sym_expression_statement = 146, - sym_variable_declaration = 147, - sym_lexical_declaration = 148, - sym_variable_declarator = 149, - sym_statement_block = 150, - sym_else_clause = 151, - sym_if_statement = 152, - sym_switch_statement = 153, - sym_for_statement = 154, - sym_for_in_statement = 155, - sym__for_header = 156, - sym_while_statement = 157, - sym_do_statement = 158, - sym_try_statement = 159, - sym_with_statement = 160, - sym_break_statement = 161, - sym_continue_statement = 162, - sym_debugger_statement = 163, - sym_return_statement = 164, - sym_throw_statement = 165, - sym_empty_statement = 166, - sym_labeled_statement = 167, - sym_switch_body = 168, - sym_switch_case = 169, - sym_switch_default = 170, - sym_catch_clause = 171, - sym_finally_clause = 172, - sym_parenthesized_expression = 173, - sym_expression = 174, - sym_primary_expression = 175, - sym_yield_expression = 176, - sym_object = 177, - sym_object_pattern = 178, - sym_assignment_pattern = 179, - sym_object_assignment_pattern = 180, - sym_array = 181, - sym_array_pattern = 182, - sym_glimmer_template = 183, - sym_glimmer_opening_tag = 184, - sym_glimmer_closing_tag = 185, - sym_jsx_element = 186, - sym_jsx_text = 187, - sym_jsx_expression = 188, - sym_jsx_opening_element = 189, - sym_nested_identifier = 190, - sym_jsx_namespace_name = 191, - sym_jsx_closing_element = 192, - sym_jsx_self_closing_element = 193, - sym_jsx_attribute = 194, - sym_class = 195, - sym_class_declaration = 196, - sym_class_heritage = 197, - sym_function = 198, - sym_function_declaration = 199, - sym_generator_function = 200, - sym_generator_function_declaration = 201, - sym_arrow_function = 202, - sym_call_expression = 203, - sym_new_expression = 204, - sym_await_expression = 205, - sym_member_expression = 206, - sym_subscript_expression = 207, - sym_assignment_expression = 208, - sym__augmented_assignment_lhs = 209, - sym_augmented_assignment_expression = 210, - sym__initializer = 211, - sym__destructuring_pattern = 212, - sym_spread_element = 213, - sym_ternary_expression = 214, - sym_binary_expression = 215, - sym_unary_expression = 216, - sym_update_expression = 217, - sym_sequence_expression = 218, - sym_string = 219, - sym_template_string = 220, - sym_template_substitution = 221, - sym_regex = 222, - sym_meta_property = 223, - sym_arguments = 224, - sym_decorator = 225, - sym_decorator_member_expression = 226, - sym_decorator_call_expression = 227, - sym_class_body = 228, - sym_field_definition = 229, - sym_formal_parameters = 230, - sym_class_static_block = 231, - sym_pattern = 232, - sym_rest_pattern = 233, - sym_method_definition = 234, - sym_pair = 235, - sym_pair_pattern = 236, - sym__property_name = 237, - sym_computed_property_name = 238, - aux_sym_program_repeat1 = 239, - aux_sym_export_statement_repeat1 = 240, - aux_sym_export_clause_repeat1 = 241, - aux_sym_named_imports_repeat1 = 242, - aux_sym_variable_declaration_repeat1 = 243, - aux_sym_switch_body_repeat1 = 244, - aux_sym_object_repeat1 = 245, - aux_sym_object_pattern_repeat1 = 246, - aux_sym_array_repeat1 = 247, - aux_sym_array_pattern_repeat1 = 248, - aux_sym_glimmer_template_repeat1 = 249, - aux_sym_jsx_element_repeat1 = 250, - aux_sym_jsx_opening_element_repeat1 = 251, - aux_sym_string_repeat1 = 252, - aux_sym_string_repeat2 = 253, - aux_sym_template_string_repeat1 = 254, - aux_sym_class_body_repeat1 = 255, - aux_sym_formal_parameters_repeat1 = 256, - alias_sym_property_identifier = 257, - alias_sym_shorthand_property_identifier = 258, - alias_sym_shorthand_property_identifier_pattern = 259, - alias_sym_statement_identifier = 260, + 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, }; static const char * const ts_symbol_names[] = { @@ -397,7 +400,7 @@ static const char * const ts_symbol_names[] = { [sym_unescaped_double_string_fragment] = "string_fragment", [sym_unescaped_single_string_fragment] = "string_fragment", [sym_escape_sequence] = "escape_sequence", - [sym_comment] = "comment", + [aux_sym_comment_token1] = "comment_token1", [anon_sym_BQUOTE] = "`", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_SLASH2] = "/", @@ -418,8 +421,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_get] = "get", [anon_sym_set] = "set", [sym__automatic_semicolon] = "_automatic_semicolon", - [sym__template_chars] = "_template_chars", + [sym__template_chars] = "string_fragment", [sym__ternary_qmark] = "\?", + [sym_html_comment] = "html_comment", [sym_program] = "program", [sym_export_statement] = "export_statement", [sym_namespace_export] = "namespace_export", @@ -486,7 +490,7 @@ static const char * const ts_symbol_names[] = { [sym_class] = "class", [sym_class_declaration] = "class_declaration", [sym_class_heritage] = "class_heritage", - [sym_function] = "function", + [sym_function_expression] = "function_expression", [sym_function_declaration] = "function_declaration", [sym_generator_function] = "generator_function", [sym_generator_function_declaration] = "generator_function_declaration", @@ -508,6 +512,7 @@ static const char * const ts_symbol_names[] = { [sym_update_expression] = "update_expression", [sym_sequence_expression] = "sequence_expression", [sym_string] = "string", + [sym_comment] = "comment", [sym_template_string] = "template_string", [sym_template_substitution] = "template_substitution", [sym_regex] = "regex", @@ -540,6 +545,7 @@ 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_sequence_expression_repeat1] = "sequence_expression_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", [aux_sym_template_string_repeat1] = "template_string_repeat1", @@ -658,10 +664,10 @@ static const TSSymbol ts_symbol_map[] = { [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_unescaped_double_string_fragment, - [sym_unescaped_single_string_fragment] = sym_unescaped_double_string_fragment, + [sym_unescaped_double_string_fragment] = sym__template_chars, + [sym_unescaped_single_string_fragment] = sym__template_chars, [sym_escape_sequence] = sym_escape_sequence, - [sym_comment] = sym_comment, + [aux_sym_comment_token1] = aux_sym_comment_token1, [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, [anon_sym_SLASH2] = anon_sym_SLASH, @@ -684,6 +690,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__automatic_semicolon] = sym__automatic_semicolon, [sym__template_chars] = sym__template_chars, [sym__ternary_qmark] = sym__ternary_qmark, + [sym_html_comment] = sym_html_comment, [sym_program] = sym_program, [sym_export_statement] = sym_export_statement, [sym_namespace_export] = sym_namespace_export, @@ -750,7 +757,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, [sym_class_heritage] = sym_class_heritage, - [sym_function] = sym_function, + [sym_function_expression] = sym_function_expression, [sym_function_declaration] = sym_function_declaration, [sym_generator_function] = sym_generator_function, [sym_generator_function_declaration] = sym_generator_function_declaration, @@ -772,6 +779,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_update_expression] = sym_update_expression, [sym_sequence_expression] = sym_sequence_expression, [sym_string] = sym_string, + [sym_comment] = sym_comment, [sym_template_string] = sym_template_string, [sym_template_substitution] = sym_template_substitution, [sym_regex] = sym_regex, @@ -804,6 +812,7 @@ 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_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1, @@ -1252,9 +1261,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_comment] = { - .visible = true, - .named = true, + [aux_sym_comment_token1] = { + .visible = false, + .named = false, }, [anon_sym_BQUOTE] = { .visible = true, @@ -1337,13 +1346,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__template_chars] = { - .visible = false, + .visible = true, .named = true, }, [sym__ternary_qmark] = { .visible = true, .named = false, }, + [sym_html_comment] = { + .visible = true, + .named = true, + }, [sym_program] = { .visible = true, .named = true, @@ -1611,7 +1624,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_function] = { + [sym_function_expression] = { .visible = true, .named = true, }, @@ -1699,6 +1712,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_comment] = { + .visible = true, + .named = true, + }, [sym_template_string] = { .visible = true, .named = true, @@ -1828,6 +1845,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_sequence_expression_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_string_repeat1] = { .visible = false, .named = false, @@ -1866,7 +1887,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_alias = 1, field_alternative = 2, field_argument = 3, @@ -2067,11 +2088,11 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_argument, 1}, {field_operator, 0}, [7] = - {field_argument, 0}, - {field_operator, 1}, - [9] = {field_arguments, 1}, {field_function, 0}, + [9] = + {field_argument, 0}, + {field_operator, 1}, [11] = {field_close_tag, 1}, {field_open_tag, 0}, @@ -2426,110 +2447,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 14, + [15] = 11, [16] = 16, - [17] = 16, - [18] = 18, + [17] = 17, + [18] = 16, [19] = 16, - [20] = 18, + [20] = 17, [21] = 16, - [22] = 18, + [22] = 17, [23] = 16, - [24] = 18, - [25] = 16, - [26] = 18, - [27] = 16, + [24] = 17, + [25] = 17, + [26] = 16, + [27] = 17, [28] = 16, - [29] = 16, - [30] = 18, + [29] = 17, + [30] = 17, [31] = 16, - [32] = 18, - [33] = 18, + [32] = 16, + [33] = 17, [34] = 16, - [35] = 18, - [36] = 16, - [37] = 18, - [38] = 18, - [39] = 16, - [40] = 18, - [41] = 18, + [35] = 17, + [36] = 17, + [37] = 16, + [38] = 16, + [39] = 17, + [40] = 17, + [41] = 16, [42] = 16, - [43] = 18, + [43] = 17, [44] = 16, - [45] = 18, + [45] = 16, [46] = 16, - [47] = 18, - [48] = 16, - [49] = 49, - [50] = 18, - [51] = 16, + [47] = 17, + [48] = 17, + [49] = 16, + [50] = 17, + [51] = 17, [52] = 16, - [53] = 18, + [53] = 17, [54] = 16, - [55] = 18, + [55] = 17, [56] = 16, - [57] = 18, + [57] = 16, [58] = 58, [59] = 16, - [60] = 60, - [61] = 18, - [62] = 18, - [63] = 16, - [64] = 16, - [65] = 18, - [66] = 16, - [67] = 18, - [68] = 18, + [60] = 17, + [61] = 61, + [62] = 16, + [63] = 63, + [64] = 17, + [65] = 17, + [66] = 17, + [67] = 16, + [68] = 17, [69] = 69, [70] = 70, - [71] = 70, + [71] = 69, [72] = 72, [73] = 73, - [74] = 74, - [75] = 75, + [74] = 72, + [75] = 72, [76] = 76, - [77] = 69, + [77] = 77, [78] = 78, - [79] = 79, - [80] = 79, - [81] = 76, - [82] = 69, - [83] = 83, - [84] = 75, - [85] = 78, - [86] = 75, - [87] = 83, - [88] = 79, - [89] = 83, - [90] = 79, - [91] = 69, - [92] = 74, - [93] = 73, - [94] = 75, - [95] = 72, - [96] = 83, - [97] = 70, - [98] = 72, - [99] = 79, - [100] = 76, - [101] = 69, - [102] = 83, - [103] = 76, - [104] = 70, - [105] = 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] = 72, - [108] = 74, - [109] = 72, - [110] = 74, - [111] = 78, - [112] = 73, - [113] = 75, - [114] = 73, - [115] = 70, - [116] = 74, - [117] = 78, - [118] = 73, + [107] = 81, + [108] = 76, + [109] = 80, + [110] = 70, + [111] = 76, + [112] = 77, + [113] = 73, + [114] = 81, + [115] = 81, + [116] = 77, + [117] = 70, + [118] = 78, [119] = 119, [120] = 119, [121] = 119, @@ -2537,314 +2558,314 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [123] = 119, [124] = 124, [125] = 124, - [126] = 126, - [127] = 127, - [128] = 126, - [129] = 127, - [130] = 130, - [131] = 127, + [126] = 124, + [127] = 124, + [128] = 128, + [129] = 124, + [130] = 124, + [131] = 124, [132] = 132, - [133] = 132, - [134] = 134, - [135] = 127, - [136] = 132, - [137] = 126, - [138] = 127, - [139] = 126, - [140] = 127, - [141] = 126, - [142] = 132, - [143] = 124, - [144] = 132, - [145] = 124, - [146] = 124, - [147] = 127, - [148] = 134, + [133] = 133, + [134] = 133, + [135] = 135, + [136] = 135, + [137] = 132, + [138] = 133, + [139] = 132, + [140] = 135, + [141] = 133, + [142] = 133, + [143] = 143, + [144] = 135, + [145] = 132, + [146] = 135, + [147] = 132, + [148] = 148, [149] = 149, [150] = 150, - [151] = 134, + [151] = 151, [152] = 152, [153] = 153, [154] = 154, - [155] = 155, + [155] = 143, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 160, + [160] = 159, [161] = 161, [162] = 162, [163] = 163, - [164] = 158, - [165] = 160, + [164] = 164, + [165] = 143, [166] = 166, - [167] = 153, - [168] = 160, - [169] = 154, - [170] = 170, - [171] = 155, - [172] = 158, - [173] = 153, - [174] = 134, - [175] = 159, - [176] = 157, - [177] = 161, - [178] = 166, - [179] = 162, - [180] = 154, - [181] = 163, - [182] = 159, - [183] = 149, - [184] = 150, - [185] = 156, - [186] = 150, - [187] = 161, + [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] = 162, - [190] = 156, - [191] = 149, - [192] = 152, - [193] = 152, - [194] = 157, - [195] = 155, - [196] = 163, - [197] = 161, - [198] = 198, + [189] = 143, + [190] = 154, + [191] = 157, + [192] = 161, + [193] = 188, + [194] = 148, + [195] = 164, + [196] = 152, + [197] = 166, + [198] = 158, [199] = 199, - [200] = 162, - [201] = 156, - [202] = 160, + [200] = 167, + [201] = 151, + [202] = 202, [203] = 150, - [204] = 199, - [205] = 149, - [206] = 153, - [207] = 163, - [208] = 157, - [209] = 152, - [210] = 155, - [211] = 159, - [212] = 154, - [213] = 158, - [214] = 214, - [215] = 214, - [216] = 214, - [217] = 217, + [204] = 202, + [205] = 205, + [206] = 157, + [207] = 148, + [208] = 153, + [209] = 209, + [210] = 158, + [211] = 166, + [212] = 202, + [213] = 164, + [214] = 202, + [215] = 162, + [216] = 161, + [217] = 202, [218] = 218, - [219] = 214, - [220] = 220, - [221] = 214, + [219] = 152, + [220] = 163, + [221] = 154, [222] = 222, [223] = 223, [224] = 224, - [225] = 223, - [226] = 226, - [227] = 223, - [228] = 223, - [229] = 223, - [230] = 230, - [231] = 231, - [232] = 231, + [225] = 225, + [226] = 225, + [227] = 225, + [228] = 228, + [229] = 225, + [230] = 228, + [231] = 225, + [232] = 232, [233] = 233, - [234] = 234, - [235] = 234, - [236] = 234, - [237] = 234, - [238] = 234, - [239] = 239, - [240] = 239, - [241] = 239, - [242] = 239, - [243] = 239, + [234] = 233, + [235] = 233, + [236] = 233, + [237] = 233, + [238] = 238, + [239] = 238, + [240] = 238, + [241] = 238, + [242] = 238, + [243] = 243, [244] = 244, [245] = 245, [246] = 246, [247] = 247, [248] = 248, - [249] = 245, + [249] = 249, [250] = 250, - [251] = 250, - [252] = 252, - [253] = 252, - [254] = 254, - [255] = 247, - [256] = 245, - [257] = 257, - [258] = 248, + [251] = 251, + [252] = 250, + [253] = 253, + [254] = 244, + [255] = 255, + [256] = 256, + [257] = 251, + [258] = 250, [259] = 259, - [260] = 260, - [261] = 261, - [262] = 260, - [263] = 263, + [260] = 251, + [261] = 255, + [262] = 250, + [263] = 253, [264] = 264, - [265] = 265, - [266] = 266, + [265] = 249, + [266] = 264, [267] = 267, - [268] = 260, - [269] = 247, - [270] = 264, - [271] = 260, - [272] = 248, - [273] = 245, - [274] = 274, - [275] = 244, - [276] = 245, - [277] = 246, - [278] = 278, - [279] = 247, - [280] = 248, - [281] = 250, - [282] = 246, - [283] = 252, - [284] = 252, - [285] = 252, - [286] = 244, - [287] = 246, - [288] = 250, - [289] = 278, - [290] = 246, - [291] = 264, - [292] = 247, - [293] = 264, - [294] = 260, - [295] = 248, - [296] = 250, - [297] = 264, - [298] = 244, - [299] = 263, - [300] = 244, - [301] = 267, - [302] = 302, + [268] = 255, + [269] = 244, + [270] = 253, + [271] = 251, + [272] = 250, + [273] = 273, + [274] = 259, + [275] = 249, + [276] = 255, + [277] = 244, + [278] = 251, + [279] = 253, + [280] = 280, + [281] = 280, + [282] = 280, + [283] = 283, + [284] = 284, + [285] = 256, + [286] = 256, + [287] = 259, + [288] = 259, + [289] = 253, + [290] = 256, + [291] = 244, + [292] = 249, + [293] = 280, + [294] = 256, + [295] = 249, + [296] = 267, + [297] = 255, + [298] = 280, + [299] = 259, + [300] = 300, + [301] = 301, + [302] = 300, [303] = 303, [304] = 304, [305] = 305, [306] = 306, [307] = 307, - [308] = 308, + [308] = 305, [309] = 309, - [310] = 307, - [311] = 311, + [310] = 306, + [311] = 301, [312] = 312, [313] = 313, [314] = 314, - [315] = 315, - [316] = 316, + [315] = 307, + [316] = 301, [317] = 317, [318] = 318, [319] = 319, [320] = 320, - [321] = 303, - [322] = 322, - [323] = 316, - [324] = 303, - [325] = 315, - [326] = 326, - [327] = 327, + [321] = 300, + [322] = 312, + [323] = 323, + [324] = 324, + [325] = 303, + [326] = 324, + [327] = 313, [328] = 314, - [329] = 302, + [329] = 317, [330] = 330, - [331] = 307, - [332] = 322, - [333] = 333, + [331] = 331, + [332] = 318, + [333] = 323, [334] = 334, - [335] = 305, - [336] = 320, - [337] = 319, - [338] = 304, - [339] = 313, - [340] = 327, - [341] = 304, - [342] = 308, - [343] = 334, - [344] = 333, - [345] = 345, - [346] = 346, - [347] = 318, - [348] = 348, - [349] = 307, - [350] = 350, - [351] = 311, - [352] = 352, - [353] = 326, - [354] = 317, - [355] = 322, + [335] = 335, + [336] = 324, + [337] = 324, + [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, + [353] = 353, + [354] = 354, + [355] = 355, [356] = 356, - [357] = 311, - [358] = 306, - [359] = 319, - [360] = 308, - [361] = 309, - [362] = 319, - [363] = 322, - [364] = 309, - [365] = 326, - [366] = 327, - [367] = 306, - [368] = 313, - [369] = 305, - [370] = 308, - [371] = 371, - [372] = 304, - [373] = 302, - [374] = 326, - [375] = 314, - [376] = 334, - [377] = 333, - [378] = 306, - [379] = 305, - [380] = 327, - [381] = 302, - [382] = 314, - [383] = 312, - [384] = 315, - [385] = 385, - [386] = 316, - [387] = 302, - [388] = 318, - [389] = 320, - [390] = 320, - [391] = 315, - [392] = 303, - [393] = 316, - [394] = 394, - [395] = 315, - [396] = 314, - [397] = 316, - [398] = 333, - [399] = 307, - [400] = 305, - [401] = 313, - [402] = 318, - [403] = 303, - [404] = 311, - [405] = 320, - [406] = 306, - [407] = 334, - [408] = 317, - [409] = 309, - [410] = 308, - [411] = 327, - [412] = 326, - [413] = 334, - [414] = 309, - [415] = 333, - [416] = 319, - [417] = 322, - [418] = 304, - [419] = 313, - [420] = 311, - [421] = 421, - [422] = 318, + [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, + [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, + [391] = 391, + [392] = 305, + [393] = 317, + [394] = 318, + [395] = 356, + [396] = 319, + [397] = 306, + [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, [423] = 423, [424] = 423, [425] = 423, [426] = 426, [427] = 426, [428] = 426, - [429] = 426, + [429] = 429, [430] = 426, - [431] = 431, - [432] = 431, - [433] = 431, + [431] = 429, + [432] = 426, + [433] = 429, [434] = 434, [435] = 435, [436] = 434, @@ -2852,649 +2873,649 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [438] = 434, [439] = 435, [440] = 440, - [441] = 441, - [442] = 441, + [441] = 440, + [442] = 440, [443] = 443, - [444] = 441, - [445] = 160, + [444] = 443, + [445] = 445, [446] = 446, - [447] = 441, + [447] = 447, [448] = 440, - [449] = 440, - [450] = 446, - [451] = 446, - [452] = 452, - [453] = 453, - [454] = 149, - [455] = 446, - [456] = 441, - [457] = 453, - [458] = 446, - [459] = 441, - [460] = 440, - [461] = 160, - [462] = 149, - [463] = 160, - [464] = 156, - [465] = 452, - [466] = 149, - [467] = 160, - [468] = 468, - [469] = 149, - [470] = 150, - [471] = 471, - [472] = 149, - [473] = 441, - [474] = 474, - [475] = 453, - [476] = 160, + [449] = 446, + [450] = 443, + [451] = 451, + [452] = 443, + [453] = 440, + [454] = 443, + [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] = 149, - [479] = 479, - [480] = 468, - [481] = 481, + [478] = 148, + [479] = 466, + [480] = 456, + [481] = 477, [482] = 482, [483] = 483, - [484] = 160, - [485] = 477, - [486] = 477, - [487] = 474, + [484] = 164, + [485] = 164, + [486] = 157, + [487] = 148, [488] = 488, [489] = 489, - [490] = 477, + [490] = 490, [491] = 491, - [492] = 477, - [493] = 150, - [494] = 494, - [495] = 495, - [496] = 156, - [497] = 149, - [498] = 150, - [499] = 150, - [500] = 150, - [501] = 149, - [502] = 156, - [503] = 160, - [504] = 155, - [505] = 156, - [506] = 156, - [507] = 160, - [508] = 157, - [509] = 149, - [510] = 468, - [511] = 160, - [512] = 512, - [513] = 513, - [514] = 514, + [492] = 148, + [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] = 471, - [517] = 474, - [518] = 481, - [519] = 482, - [520] = 150, - [521] = 483, - [522] = 156, - [523] = 150, - [524] = 160, - [525] = 160, - [526] = 488, - [527] = 489, - [528] = 149, - [529] = 491, - [530] = 494, - [531] = 495, - [532] = 532, + [516] = 164, + [517] = 493, + [518] = 157, + [519] = 164, + [520] = 493, + [521] = 158, + [522] = 522, + [523] = 158, + [524] = 524, + [525] = 164, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 148, + [530] = 158, + [531] = 158, + [532] = 522, [533] = 533, - [534] = 156, - [535] = 468, + [534] = 534, + [535] = 535, [536] = 536, - [537] = 150, - [538] = 160, - [539] = 156, - [540] = 540, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 157, [541] = 541, - [542] = 149, + [542] = 542, [543] = 543, [544] = 544, [545] = 545, [546] = 546, - [547] = 150, - [548] = 495, - [549] = 160, - [550] = 155, - [551] = 157, + [547] = 547, + [548] = 548, + [549] = 515, + [550] = 505, + [551] = 551, [552] = 552, - [553] = 471, + [553] = 505, [554] = 554, [555] = 555, [556] = 556, [557] = 557, - [558] = 155, - [559] = 559, - [560] = 157, + [558] = 558, + [559] = 157, + [560] = 560, [561] = 561, - [562] = 160, + [562] = 562, [563] = 563, - [564] = 441, + [564] = 564, [565] = 565, [566] = 566, [567] = 567, - [568] = 479, - [569] = 494, + [568] = 568, + [569] = 569, [570] = 570, [571] = 571, [572] = 572, - [573] = 573, + [573] = 164, [574] = 574, - [575] = 575, + [575] = 504, [576] = 576, [577] = 577, [578] = 578, - [579] = 491, + [579] = 579, [580] = 580, [581] = 581, [582] = 582, - [583] = 441, - [584] = 584, - [585] = 585, - [586] = 489, + [583] = 583, + [584] = 503, + [585] = 482, + [586] = 586, [587] = 587, - [588] = 488, + [588] = 491, [589] = 589, - [590] = 590, + [590] = 490, [591] = 591, - [592] = 443, - [593] = 593, - [594] = 149, + [592] = 489, + [593] = 500, + [594] = 483, [595] = 595, - [596] = 596, - [597] = 597, + [596] = 148, + [597] = 157, [598] = 598, [599] = 599, - [600] = 600, - [601] = 474, + [600] = 164, + [601] = 601, [602] = 602, [603] = 603, [604] = 604, [605] = 605, - [606] = 606, + [606] = 148, [607] = 607, - [608] = 608, + [608] = 157, [609] = 609, - [610] = 610, - [611] = 479, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 483, - [620] = 620, - [621] = 621, - [622] = 149, - [623] = 623, + [610] = 477, + [611] = 148, + [612] = 148, + [613] = 164, + [614] = 157, + [615] = 158, + [616] = 148, + [617] = 164, + [618] = 166, + [619] = 154, + [620] = 166, + [621] = 157, + [622] = 622, + [623] = 158, [624] = 624, [625] = 625, [626] = 626, - [627] = 150, - [628] = 156, + [627] = 627, + [628] = 628, [629] = 629, [630] = 630, - [631] = 631, - [632] = 149, + [631] = 522, + [632] = 515, [633] = 633, - [634] = 634, - [635] = 156, + [634] = 158, + [635] = 635, [636] = 636, [637] = 637, [638] = 638, [639] = 639, - [640] = 150, + [640] = 640, [641] = 641, [642] = 642, - [643] = 156, - [644] = 644, - [645] = 645, - [646] = 482, + [643] = 643, + [644] = 504, + [645] = 503, + [646] = 646, [647] = 647, [648] = 648, [649] = 649, [650] = 650, - [651] = 651, + [651] = 482, [652] = 652, - [653] = 481, + [653] = 653, [654] = 654, [655] = 655, [656] = 656, - [657] = 657, + [657] = 483, [658] = 658, - [659] = 570, - [660] = 613, - [661] = 593, - [662] = 605, - [663] = 595, - [664] = 596, - [665] = 602, - [666] = 603, - [667] = 597, - [668] = 598, - [669] = 617, - [670] = 599, - [671] = 546, - [672] = 515, - [673] = 589, - [674] = 600, - [675] = 157, - [676] = 545, - [677] = 544, - [678] = 590, - [679] = 582, - [680] = 604, - [681] = 618, - [682] = 591, - [683] = 567, - [684] = 566, - [685] = 481, - [686] = 587, - [687] = 633, - [688] = 552, - [689] = 482, - [690] = 585, - [691] = 483, - [692] = 576, - [693] = 654, - [694] = 561, - [695] = 623, - [696] = 574, - [697] = 584, - [698] = 624, - [699] = 554, - [700] = 581, - [701] = 580, - [702] = 471, - [703] = 566, - [704] = 567, - [705] = 578, - [706] = 555, - [707] = 150, - [708] = 545, - [709] = 600, - [710] = 556, - [711] = 577, - [712] = 544, - [713] = 575, - [714] = 573, - [715] = 572, - [716] = 599, - [717] = 160, - [718] = 565, - [719] = 563, - [720] = 559, - [721] = 557, - [722] = 556, - [723] = 555, - [724] = 642, - [725] = 644, - [726] = 641, - [727] = 639, - [728] = 554, - [729] = 606, - [730] = 561, - [731] = 602, - [732] = 603, - [733] = 634, - [734] = 546, - [735] = 631, - [736] = 604, - [737] = 629, - [738] = 557, - [739] = 559, - [740] = 605, - [741] = 563, - [742] = 565, - [743] = 570, - [744] = 620, - [745] = 543, - [746] = 616, - [747] = 615, - [748] = 572, - [749] = 541, - [750] = 573, - [751] = 614, - [752] = 149, - [753] = 540, - [754] = 612, - [755] = 575, - [756] = 577, - [757] = 156, - [758] = 578, - [759] = 150, - [760] = 606, + [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] = 536, - [763] = 607, - [764] = 607, - [765] = 609, - [766] = 621, - [767] = 645, - [768] = 617, - [769] = 618, - [770] = 647, - [771] = 648, - [772] = 580, - [773] = 576, - [774] = 581, - [775] = 149, - [776] = 488, - [777] = 489, - [778] = 491, - [779] = 156, - [780] = 649, - [781] = 584, - [782] = 585, - [783] = 156, - [784] = 582, - [785] = 512, - [786] = 587, - [787] = 589, - [788] = 150, - [789] = 590, - [790] = 650, - [791] = 651, - [792] = 652, - [793] = 591, - [794] = 593, - [795] = 610, - [796] = 608, - [797] = 610, - [798] = 595, - [799] = 612, - [800] = 156, - [801] = 614, - [802] = 615, - [803] = 616, - [804] = 609, - [805] = 621, - [806] = 623, - [807] = 624, - [808] = 654, - [809] = 620, - [810] = 596, - [811] = 655, - [812] = 625, - [813] = 656, - [814] = 625, - [815] = 657, - [816] = 597, - [817] = 552, - [818] = 658, - [819] = 613, - [820] = 513, - [821] = 629, - [822] = 638, - [823] = 160, - [824] = 532, - [825] = 533, - [826] = 637, - [827] = 494, - [828] = 631, - [829] = 633, - [830] = 634, - [831] = 636, - [832] = 536, - [833] = 639, - [834] = 626, - [835] = 641, - [836] = 642, - [837] = 150, - [838] = 479, - [839] = 540, - [840] = 630, - [841] = 644, - [842] = 571, - [843] = 541, - [844] = 645, - [845] = 515, - [846] = 514, - [847] = 514, - [848] = 155, - [849] = 647, - [850] = 648, - [851] = 543, - [852] = 571, - [853] = 630, - [854] = 495, - [855] = 608, - [856] = 649, - [857] = 512, - [858] = 650, - [859] = 651, - [860] = 652, - [861] = 598, - [862] = 655, - [863] = 533, - [864] = 656, - [865] = 626, - [866] = 657, - [867] = 658, - [868] = 532, - [869] = 513, - [870] = 638, - [871] = 637, - [872] = 636, - [873] = 598, - [874] = 631, - [875] = 544, - [876] = 545, - [877] = 565, - [878] = 563, - [879] = 559, - [880] = 573, - [881] = 572, - [882] = 557, - [883] = 546, - [884] = 540, - [885] = 556, - [886] = 608, - [887] = 541, - [888] = 602, - [889] = 603, - [890] = 555, - [891] = 604, - [892] = 605, - [893] = 606, - [894] = 570, - [895] = 543, - [896] = 607, - [897] = 609, - [898] = 582, - [899] = 650, - [900] = 512, - [901] = 614, - [902] = 610, - [903] = 649, - [904] = 612, - [905] = 648, - [906] = 613, - [907] = 150, - [908] = 617, - [909] = 575, - [910] = 618, - [911] = 554, - [912] = 577, - [913] = 578, - [914] = 580, - [915] = 581, - [916] = 574, - [917] = 576, - [918] = 552, - [919] = 567, - [920] = 566, - [921] = 584, - [922] = 585, - [923] = 587, - [924] = 924, - [925] = 615, - [926] = 924, - [927] = 616, - [928] = 589, - [929] = 590, - [930] = 621, - [931] = 647, - [932] = 591, - [933] = 620, - [934] = 623, - [935] = 624, - [936] = 625, - [937] = 626, - [938] = 630, - [939] = 593, - [940] = 571, - [941] = 514, - [942] = 595, - [943] = 645, - [944] = 596, - [945] = 515, - [946] = 636, - [947] = 637, - [948] = 629, - [949] = 638, - [950] = 597, - [951] = 513, - [952] = 561, - [953] = 633, - [954] = 536, - [955] = 658, - [956] = 657, - [957] = 655, - [958] = 634, - [959] = 599, - [960] = 639, - [961] = 600, - [962] = 654, - [963] = 652, - [964] = 651, - [965] = 641, + [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, + [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] = 642, - [968] = 533, - [969] = 924, - [970] = 644, - [971] = 532, - [972] = 156, - [973] = 561, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 981, - [983] = 983, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 988, + [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] = 984, + [991] = 991, [992] = 992, - [993] = 981, + [993] = 993, [994] = 994, - [995] = 974, + [995] = 995, [996] = 996, - [997] = 994, + [997] = 622, [998] = 998, - [999] = 976, + [999] = 999, [1000] = 1000, - [1001] = 996, - [1002] = 980, - [1003] = 981, - [1004] = 984, - [1005] = 996, - [1006] = 998, - [1007] = 979, - [1008] = 1000, - [1009] = 984, - [1010] = 975, - [1011] = 984, - [1012] = 1012, - [1013] = 1013, - [1014] = 996, - [1015] = 974, - [1016] = 981, - [1017] = 981, - [1018] = 984, - [1019] = 978, - [1020] = 561, - [1021] = 977, - [1022] = 994, - [1023] = 996, - [1024] = 994, - [1025] = 994, - [1026] = 1026, - [1027] = 1012, - [1028] = 1028, - [1029] = 974, - [1030] = 1013, - [1031] = 1031, - [1032] = 1028, - [1033] = 1033, - [1034] = 974, - [1035] = 998, - [1036] = 984, - [1037] = 1000, - [1038] = 981, - [1039] = 1033, - [1040] = 1026, - [1041] = 1028, - [1042] = 984, - [1043] = 981, - [1044] = 981, - [1045] = 984, - [1046] = 992, - [1047] = 974, - [1048] = 1031, + [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, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 622, + [1022] = 1016, + [1023] = 1009, + [1024] = 1009, + [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, - [1050] = 1049, - [1051] = 1049, - [1052] = 1049, - [1053] = 1049, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 134, - [1058] = 1058, - [1059] = 608, - [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 149, - [1065] = 160, + [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] = 582, + [1067] = 635, [1068] = 1068, [1069] = 1069, - [1070] = 1070, - [1071] = 156, + [1070] = 629, + [1071] = 143, [1072] = 1072, - [1073] = 157, - [1074] = 1074, + [1073] = 1073, + [1074] = 626, [1075] = 1075, - [1076] = 1076, + [1076] = 627, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, + [1080] = 624, + [1081] = 625, + [1082] = 158, + [1083] = 164, [1084] = 1084, [1085] = 1085, [1086] = 1086, @@ -3504,32 +3525,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1090] = 1090, [1091] = 1091, [1092] = 1092, - [1093] = 1054, + [1093] = 1093, [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, + [1095] = 164, + [1096] = 158, + [1097] = 148, + [1098] = 148, [1099] = 1099, - [1100] = 160, + [1100] = 1100, [1101] = 1101, [1102] = 1102, - [1103] = 1056, - [1104] = 1055, - [1105] = 155, + [1103] = 157, + [1104] = 1104, + [1105] = 154, [1106] = 1106, [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1110, - [1111] = 576, + [1110] = 157, + [1111] = 1068, [1112] = 1112, - [1113] = 1113, + [1113] = 1069, [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, - [1118] = 155, + [1118] = 1118, [1119] = 1119, [1120] = 1120, [1121] = 1121, @@ -3537,7 +3558,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 1126, + [1126] = 1066, [1127] = 1127, [1128] = 1128, [1129] = 1129, @@ -3546,13 +3567,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1132] = 1132, [1133] = 1133, [1134] = 1134, - [1135] = 574, + [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1141, + [1141] = 166, [1142] = 1142, [1143] = 1143, [1144] = 1144, @@ -3563,376 +3584,376 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 566, + [1152] = 1152, [1153] = 1153, - [1154] = 567, - [1155] = 156, - [1156] = 150, + [1154] = 1154, + [1155] = 1155, + [1156] = 154, [1157] = 1157, [1158] = 1158, - [1159] = 157, - [1160] = 150, + [1159] = 1159, + [1160] = 1160, [1161] = 1161, [1162] = 1162, [1163] = 1163, [1164] = 1164, [1165] = 1165, - [1166] = 149, - [1167] = 1087, - [1168] = 1060, - [1169] = 1169, - [1170] = 1112, - [1171] = 1063, - [1172] = 1062, - [1173] = 1127, - [1174] = 1125, - [1175] = 1097, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 166, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1109, - [1179] = 1114, - [1180] = 1122, - [1181] = 1132, - [1182] = 1119, - [1183] = 1132, - [1184] = 1114, - [1185] = 1112, - [1186] = 1186, - [1187] = 1109, - [1188] = 1102, - [1189] = 1099, - [1190] = 1098, - [1191] = 1095, - [1192] = 1122, - [1193] = 1162, - [1194] = 1102, - [1195] = 1157, - [1196] = 1090, - [1197] = 1197, - [1198] = 1089, - [1199] = 1165, - [1200] = 1061, - [1201] = 1201, - [1202] = 1088, - [1203] = 1138, - [1204] = 1058, - [1205] = 1077, - [1206] = 1151, - [1207] = 1119, - [1208] = 1150, - [1209] = 1069, - [1210] = 1070, - [1211] = 134, - [1212] = 1151, - [1213] = 1138, - [1214] = 1087, - [1215] = 1060, - [1216] = 134, - [1217] = 1088, - [1218] = 1089, - [1219] = 1062, - [1220] = 1090, - [1221] = 1061, - [1222] = 1095, - [1223] = 1157, - [1224] = 1070, - [1225] = 1069, - [1226] = 1098, - [1227] = 1150, - [1228] = 1165, - [1229] = 1066, - [1230] = 1097, - [1231] = 1099, - [1232] = 1127, - [1233] = 1125, - [1234] = 1066, - [1235] = 1235, - [1236] = 1236, - [1237] = 1153, - [1238] = 1238, - [1239] = 1239, - [1240] = 1066, - [1241] = 1241, - [1242] = 1139, - [1243] = 1164, - [1244] = 1136, - [1245] = 1133, - [1246] = 1094, - [1247] = 1092, - [1248] = 1235, - [1249] = 1161, - [1250] = 1130, - [1251] = 1251, - [1252] = 1128, - [1253] = 1158, - [1254] = 1126, - [1255] = 1062, - [1256] = 1060, - [1257] = 1124, - [1258] = 1123, - [1259] = 1061, - [1260] = 1062, - [1261] = 1251, - [1262] = 1241, - [1263] = 1121, - [1264] = 1066, - [1265] = 1235, + [1178] = 1148, + [1179] = 1179, + [1180] = 1094, + [1181] = 1181, + [1182] = 1123, + [1183] = 1177, + [1184] = 1175, + [1185] = 1170, + [1186] = 1167, + [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] = 1117, - [1268] = 1096, - [1269] = 1116, - [1270] = 1115, + [1267] = 1144, + [1268] = 1129, + [1269] = 1269, + [1270] = 1158, [1271] = 1271, - [1272] = 1113, - [1273] = 1110, - [1274] = 1271, - [1275] = 1146, - [1276] = 1091, - [1277] = 1142, - [1278] = 1141, - [1279] = 1140, - [1280] = 1137, - [1281] = 1163, - [1282] = 1201, - [1283] = 1134, - [1284] = 1060, + [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] = 1251, - [1287] = 1120, - [1288] = 1235, - [1289] = 1271, - [1290] = 163, - [1291] = 1079, - [1292] = 1108, - [1293] = 1086, - [1294] = 1061, - [1295] = 1085, - [1296] = 1084, - [1297] = 1107, - [1298] = 1238, - [1299] = 1239, - [1300] = 1076, + [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, + [1299] = 1299, + [1300] = 1285, [1301] = 1301, - [1302] = 1072, - [1303] = 1235, - [1304] = 1082, - [1305] = 1106, - [1306] = 1238, - [1307] = 1148, - [1308] = 1143, - [1309] = 1083, - [1310] = 1137, - [1311] = 1238, - [1312] = 162, - [1313] = 1101, - [1314] = 1271, - [1315] = 161, - [1316] = 159, - [1317] = 152, - [1318] = 1081, - [1319] = 1080, - [1320] = 1078, - [1321] = 1251, - [1322] = 158, - [1323] = 154, - [1324] = 153, - [1325] = 1075, - [1326] = 1144, - [1327] = 1129, - [1328] = 1074, - [1329] = 1131, - [1330] = 1238, - [1331] = 1068, - [1332] = 1145, - [1333] = 1271, - [1334] = 1251, - [1335] = 1147, - [1336] = 1235, - [1337] = 1149, - [1338] = 1338, - [1339] = 1285, - [1340] = 1340, - [1341] = 1157, - [1342] = 1127, - [1343] = 1343, - [1344] = 1344, - [1345] = 1125, - [1346] = 1122, - [1347] = 1347, - [1348] = 1348, - [1349] = 1070, - [1350] = 1119, - [1351] = 1097, - [1352] = 1352, + [1302] = 1137, + [1303] = 1142, + [1304] = 1279, + [1305] = 1115, + [1306] = 1179, + [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] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1352, - [1360] = 1352, - [1361] = 1361, - [1362] = 1340, - [1363] = 1151, - [1364] = 1138, - [1365] = 1087, - [1366] = 1354, - [1367] = 1354, - [1368] = 1340, - [1369] = 1361, - [1370] = 1355, - [1371] = 1353, - [1372] = 1354, - [1373] = 1373, + [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] = 1352, - [1376] = 1340, - [1377] = 1088, - [1378] = 1089, - [1379] = 1090, - [1380] = 1095, - [1381] = 1381, - [1382] = 1098, - [1383] = 1099, - [1384] = 1102, - [1385] = 1109, - [1386] = 1112, - [1387] = 1361, - [1388] = 1352, - [1389] = 1340, - [1390] = 1114, - [1391] = 1132, - [1392] = 1352, - [1393] = 1393, - [1394] = 1373, - [1395] = 1361, - [1396] = 1396, - [1397] = 1352, - [1398] = 1165, - [1399] = 1150, - [1400] = 1069, - [1401] = 1361, - [1402] = 1354, - [1403] = 1127, - [1404] = 1102, + [1375] = 1120, + [1376] = 1121, + [1377] = 1091, + [1378] = 1167, + [1379] = 1379, + [1380] = 1168, + [1381] = 1379, + [1382] = 1379, + [1383] = 1089, + [1384] = 1384, + [1385] = 1116, + [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] = 1201, - [1407] = 1407, - [1408] = 1241, - [1409] = 1405, - [1410] = 1405, - [1411] = 1070, - [1412] = 1119, - [1413] = 1151, - [1414] = 1138, - [1415] = 1087, - [1416] = 1088, - [1417] = 1089, - [1418] = 1090, - [1419] = 1095, - [1420] = 1097, - [1421] = 1098, - [1422] = 1099, - [1423] = 1109, - [1424] = 1112, - [1425] = 1114, - [1426] = 1132, - [1427] = 1427, - [1428] = 1122, - [1429] = 1125, - [1430] = 1165, - [1431] = 1061, - [1432] = 1066, - [1433] = 1062, - [1434] = 1405, - [1435] = 1405, - [1436] = 1150, - [1437] = 1069, - [1438] = 1157, - [1439] = 1407, - [1440] = 1060, - [1441] = 1137, - [1442] = 1266, - [1443] = 1061, - [1444] = 1066, - [1445] = 1062, - [1446] = 1446, - [1447] = 1446, - [1448] = 1448, - [1449] = 1448, - [1450] = 1448, - [1451] = 1448, - [1452] = 1448, - [1453] = 1448, - [1454] = 1448, - [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1456, - [1459] = 1456, - [1460] = 1457, - [1461] = 1461, - [1462] = 1456, - [1463] = 1457, - [1464] = 1456, - [1465] = 1456, - [1466] = 1457, - [1467] = 1456, - [1468] = 1457, - [1469] = 1456, - [1470] = 1457, - [1471] = 1457, - [1472] = 1456, - [1473] = 1456, - [1474] = 1457, - [1475] = 1457, - [1476] = 1457, - [1477] = 1456, - [1478] = 1457, - [1479] = 1479, - [1480] = 1480, - [1481] = 1480, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1483, - [1486] = 1484, - [1487] = 1484, - [1488] = 1483, - [1489] = 1484, - [1490] = 1484, - [1491] = 1483, - [1492] = 1484, - [1493] = 1483, - [1494] = 1483, - [1495] = 1483, - [1496] = 1484, - [1497] = 1497, - [1498] = 1497, - [1499] = 1497, - [1500] = 1500, - [1501] = 1497, - [1502] = 1497, - [1503] = 1497, - [1504] = 1497, - [1505] = 1505, - [1506] = 1506, + [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, + [1426] = 1426, + [1427] = 1124, + [1428] = 1413, + [1429] = 1091, + [1430] = 1121, + [1431] = 1123, + [1432] = 1089, + [1433] = 1148, + [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, + [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, + [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, [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, + [1508] = 1507, + [1509] = 1507, + [1510] = 1507, + [1511] = 1507, + [1512] = 1507, [1513] = 1513, - [1514] = 1514, + [1514] = 1507, [1515] = 1515, [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 149, - [1521] = 160, + [1520] = 1520, + [1521] = 1521, [1522] = 1522, [1523] = 1523, [1524] = 1524, @@ -3941,1257 +3962,1292 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1527] = 1527, [1528] = 1528, [1529] = 1529, - [1530] = 1530, + [1530] = 158, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1534, + [1534] = 164, [1535] = 1535, [1536] = 1536, [1537] = 1537, [1538] = 1538, - [1539] = 1523, + [1539] = 1539, [1540] = 1540, [1541] = 1541, [1542] = 1542, [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 156, + [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, - [1551] = 1551, + [1551] = 1134, [1552] = 1552, [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 1557, + [1557] = 1132, [1558] = 1558, [1559] = 1559, - [1560] = 150, + [1560] = 1560, [1561] = 1561, [1562] = 1562, [1563] = 1563, [1564] = 1564, - [1565] = 1083, - [1566] = 1551, - [1567] = 1145, - [1568] = 1068, - [1569] = 1545, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1535, + [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1512, + [1572] = 1572, [1573] = 1573, - [1574] = 1516, - [1575] = 1512, - [1576] = 1570, - [1577] = 1577, - [1578] = 1578, + [1574] = 1086, + [1575] = 1575, + [1576] = 1576, + [1577] = 157, + [1578] = 148, [1579] = 1579, - [1580] = 1573, - [1581] = 1517, - [1582] = 1570, - [1583] = 1570, - [1584] = 1570, - [1585] = 1585, - [1586] = 1586, - [1587] = 1525, - [1588] = 1588, - [1589] = 1107, - [1590] = 1590, - [1591] = 1527, + [1580] = 1580, + [1581] = 1581, + [1582] = 1562, + [1583] = 1519, + [1584] = 1584, + [1585] = 1518, + [1586] = 1567, + [1587] = 1581, + [1588] = 1521, + [1589] = 1589, + [1590] = 1521, + [1591] = 1591, [1592] = 1592, [1593] = 1593, - [1594] = 1593, + [1594] = 1594, [1595] = 1595, - [1596] = 1133, - [1597] = 1593, - [1598] = 1598, + [1596] = 1593, + [1597] = 1597, + [1598] = 1594, [1599] = 1599, - [1600] = 1593, - [1601] = 1601, - [1602] = 1526, - [1603] = 1603, - [1604] = 1595, - [1605] = 1518, - [1606] = 1606, - [1607] = 1158, - [1608] = 1593, - [1609] = 1599, - [1610] = 1603, + [1600] = 1600, + [1601] = 1600, + [1602] = 1602, + [1603] = 1599, + [1604] = 1536, + [1605] = 1605, + [1606] = 1532, + [1607] = 1531, + [1608] = 1608, + [1609] = 1609, + [1610] = 1593, [1611] = 1611, [1612] = 1612, - [1613] = 1613, - [1614] = 1518, - [1615] = 1585, - [1616] = 1606, - [1617] = 1612, - [1618] = 1588, - [1619] = 1598, - [1620] = 1611, - [1621] = 1524, - [1622] = 1590, - [1623] = 1613, - [1624] = 1624, + [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] = 1626, - [1627] = 1586, - [1628] = 1628, - [1629] = 1629, - [1630] = 1630, - [1631] = 1630, - [1632] = 1625, - [1633] = 1628, - [1634] = 1634, + [1626] = 1161, + [1627] = 1597, + [1628] = 1529, + [1629] = 1164, + [1630] = 1164, + [1631] = 1631, + [1632] = 1595, + [1633] = 1633, + [1634] = 1154, [1635] = 1635, [1636] = 1635, - [1637] = 1133, + [1637] = 1637, [1638] = 1638, - [1639] = 1624, - [1640] = 1638, - [1641] = 1158, - [1642] = 1629, - [1643] = 1634, - [1644] = 1107, - [1645] = 1626, - [1646] = 1601, - [1647] = 1592, + [1639] = 1639, + [1640] = 1637, + [1641] = 1625, + [1642] = 1642, + [1643] = 1637, + [1644] = 1642, + [1645] = 1161, + [1646] = 1591, + [1647] = 1647, [1648] = 1648, - [1649] = 1648, + [1649] = 1637, [1650] = 1650, - [1651] = 1648, + [1651] = 1631, [1652] = 1650, - [1653] = 1650, - [1654] = 1650, - [1655] = 1648, - [1656] = 1656, - [1657] = 1657, - [1658] = 1657, - [1659] = 1657, - [1660] = 1657, - [1661] = 1661, - [1662] = 1662, - [1663] = 1662, - [1664] = 1661, - [1665] = 1661, - [1666] = 1662, - [1667] = 1662, - [1668] = 1661, - [1669] = 1669, - [1670] = 1670, - [1671] = 1669, + [1653] = 1637, + [1654] = 1648, + [1655] = 1633, + [1656] = 1639, + [1657] = 1647, + [1658] = 1638, + [1659] = 1659, + [1660] = 1659, + [1661] = 1659, + [1662] = 1659, + [1663] = 1659, + [1664] = 1664, + [1665] = 1665, + [1666] = 1664, + [1667] = 1664, + [1668] = 1664, + [1669] = 1665, + [1670] = 1665, + [1671] = 1665, [1672] = 1672, - [1673] = 1673, - [1674] = 1674, + [1673] = 1672, + [1674] = 1672, [1675] = 1675, - [1676] = 1676, - [1677] = 1669, + [1676] = 1672, + [1677] = 1677, [1678] = 1678, - [1679] = 1676, - [1680] = 1670, - [1681] = 1675, - [1682] = 1676, - [1683] = 1669, - [1684] = 1676, - [1685] = 1670, - [1686] = 1675, - [1687] = 1678, - [1688] = 1678, - [1689] = 1675, - [1690] = 1678, - [1691] = 1670, - [1692] = 1692, + [1679] = 1678, + [1680] = 1678, + [1681] = 1677, + [1682] = 1677, + [1683] = 1678, + [1684] = 1677, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1686, + [1689] = 1685, + [1690] = 1687, + [1691] = 1691, + [1692] = 1686, [1693] = 1693, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 1697, - [1698] = 1698, - [1699] = 1696, + [1694] = 1691, + [1695] = 1685, + [1696] = 1691, + [1697] = 1687, + [1698] = 1693, + [1699] = 1687, [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1703, - [1704] = 1704, - [1705] = 1705, - [1706] = 1697, - [1707] = 1696, - [1708] = 1701, - [1709] = 1697, + [1701] = 1693, + [1702] = 1685, + [1703] = 1691, + [1704] = 1693, + [1705] = 1686, + [1706] = 1706, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, [1710] = 1710, - [1711] = 149, - [1712] = 1712, - [1713] = 1696, - [1714] = 1714, - [1715] = 1697, + [1711] = 1711, + [1712] = 164, + [1713] = 1713, + [1714] = 1710, + [1715] = 1715, [1716] = 1716, - [1717] = 1701, - [1718] = 160, - [1719] = 1719, - [1720] = 1696, - [1721] = 1721, - [1722] = 1697, - [1723] = 1696, - [1724] = 1701, - [1725] = 1725, - [1726] = 1696, - [1727] = 1701, - [1728] = 1728, + [1717] = 1717, + [1718] = 1718, + [1719] = 1711, + [1720] = 1720, + [1721] = 1711, + [1722] = 1722, + [1723] = 1710, + [1724] = 1716, + [1725] = 1716, + [1726] = 1726, + [1727] = 1727, + [1728] = 1710, [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 440, - [1733] = 1733, - [1734] = 1734, - [1735] = 156, - [1736] = 1736, + [1730] = 1716, + [1731] = 1711, + [1732] = 1732, + [1733] = 1711, + [1734] = 1710, + [1735] = 1716, + [1736] = 1711, [1737] = 1737, - [1738] = 1738, + [1738] = 1711, [1739] = 1739, - [1740] = 1719, - [1741] = 1077, - [1742] = 1725, - [1743] = 1743, - [1744] = 1721, - [1745] = 1734, - [1746] = 1739, + [1740] = 1740, + [1741] = 1741, + [1742] = 1742, + [1743] = 158, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, [1747] = 1747, - [1748] = 1162, - [1749] = 1749, - [1750] = 1749, - [1751] = 1714, - [1752] = 1752, - [1753] = 1523, - [1754] = 1734, - [1755] = 1730, - [1756] = 1756, + [1748] = 1745, + [1749] = 1745, + [1750] = 148, + [1751] = 1751, + [1752] = 1177, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1747, [1757] = 1757, - [1758] = 150, - [1759] = 1739, - [1760] = 1760, - [1761] = 1761, - [1762] = 1761, - [1763] = 1739, - [1764] = 1739, - [1765] = 1734, + [1758] = 1758, + [1759] = 1759, + [1760] = 1745, + [1761] = 1718, + [1762] = 1762, + [1763] = 1763, + [1764] = 1754, + [1765] = 1765, [1766] = 1766, - [1767] = 1767, - [1768] = 1710, - [1769] = 1761, - [1770] = 1761, - [1771] = 1771, - [1772] = 1734, - [1773] = 1761, - [1774] = 1774, + [1767] = 1753, + [1768] = 1768, + [1769] = 1747, + [1770] = 157, + [1771] = 456, + [1772] = 1720, + [1773] = 1729, + [1774] = 1535, [1775] = 1775, - [1776] = 1776, - [1777] = 1777, - [1778] = 1143, - [1779] = 1779, - [1780] = 1551, + [1776] = 1727, + [1777] = 1747, + [1778] = 1747, + [1779] = 1717, + [1780] = 1754, [1781] = 1781, - [1782] = 1136, - [1783] = 1783, - [1784] = 1136, - [1785] = 1785, + [1782] = 1782, + [1783] = 1128, + [1784] = 1784, + [1785] = 1751, [1786] = 1786, - [1787] = 1785, - [1788] = 1117, - [1789] = 1789, - [1790] = 1116, - [1791] = 1115, - [1792] = 1113, - [1793] = 1776, - [1794] = 1794, - [1795] = 1786, + [1787] = 1787, + [1788] = 1754, + [1789] = 1754, + [1790] = 1790, + [1791] = 1791, + [1792] = 1745, + [1793] = 1737, + [1794] = 1759, + [1795] = 1795, [1796] = 1796, [1797] = 1797, - [1798] = 1781, + [1798] = 1798, [1799] = 1799, - [1800] = 1789, - [1801] = 1789, + [1800] = 1129, + [1801] = 1801, [1802] = 1802, - [1803] = 1147, - [1804] = 1789, - [1805] = 1161, - [1806] = 1806, - [1807] = 1776, + [1803] = 1114, + [1804] = 1796, + [1805] = 1805, + [1806] = 1128, + [1807] = 1807, [1808] = 1808, - [1809] = 1785, + [1809] = 1809, [1810] = 1810, - [1811] = 1775, - [1812] = 1786, - [1813] = 1813, - [1814] = 1545, - [1815] = 1786, - [1816] = 1785, - [1817] = 1794, - [1818] = 1117, - [1819] = 1116, - [1820] = 1774, - [1821] = 1783, - [1822] = 1148, - [1823] = 1115, - [1824] = 1162, - [1825] = 1113, + [1811] = 1087, + [1812] = 1812, + [1813] = 1798, + [1814] = 1799, + [1815] = 1088, + [1816] = 1801, + [1817] = 1177, + [1818] = 1818, + [1819] = 1819, + [1820] = 1819, + [1821] = 1821, + [1822] = 1802, + [1823] = 1823, + [1824] = 1824, + [1825] = 1802, [1826] = 1826, - [1827] = 1776, + [1827] = 1827, [1828] = 1828, - [1829] = 1785, - [1830] = 1789, - [1831] = 1831, - [1832] = 1774, - [1833] = 1833, - [1834] = 1834, + [1829] = 1799, + [1830] = 1801, + [1831] = 1799, + [1832] = 1798, + [1833] = 1802, + [1834] = 1810, [1835] = 1835, - [1836] = 1836, - [1837] = 1147, - [1838] = 1148, - [1839] = 1143, - [1840] = 1840, - [1841] = 1774, - [1842] = 1833, - [1843] = 1826, - [1844] = 1844, - [1845] = 1077, - [1846] = 1161, - [1847] = 1776, - [1848] = 1777, - [1849] = 1849, - [1850] = 1850, - [1851] = 1752, + [1836] = 1157, + [1837] = 1827, + [1838] = 1809, + [1839] = 1801, + [1840] = 1140, + [1841] = 1841, + [1842] = 1139, + [1843] = 1114, + [1844] = 1138, + [1845] = 1845, + [1846] = 1824, + [1847] = 1129, + [1848] = 1848, + [1849] = 1798, + [1850] = 1801, + [1851] = 1136, [1852] = 1852, - [1853] = 1766, - [1854] = 1729, - [1855] = 1855, + [1853] = 1087, + [1854] = 1088, + [1855] = 1799, [1856] = 1856, - [1857] = 1857, + [1857] = 1562, [1858] = 1858, [1859] = 1859, [1860] = 1860, - [1861] = 1860, - [1862] = 1855, - [1863] = 1863, - [1864] = 1864, - [1865] = 1859, + [1861] = 1157, + [1862] = 1805, + [1863] = 1858, + [1864] = 1802, + [1865] = 1567, [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1870, - [1871] = 1852, - [1872] = 1872, + [1867] = 1140, + [1868] = 1139, + [1869] = 1138, + [1870] = 1136, + [1871] = 1819, + [1872] = 1819, [1873] = 1873, [1874] = 1874, [1875] = 1875, - [1876] = 1866, + [1876] = 1876, [1877] = 1877, [1878] = 1878, - [1879] = 1877, + [1879] = 1879, [1880] = 1880, [1881] = 1881, - [1882] = 1878, + [1882] = 1882, [1883] = 1883, [1884] = 1884, - [1885] = 1808, - [1886] = 1875, - [1887] = 1850, - [1888] = 1884, - [1889] = 1875, - [1890] = 1873, + [1885] = 1885, + [1886] = 1886, + [1887] = 1762, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, [1891] = 1891, [1892] = 1892, - [1893] = 1872, + [1893] = 1893, [1894] = 1894, - [1895] = 1858, - [1896] = 1896, - [1897] = 1868, - [1898] = 1863, - [1899] = 1864, - [1900] = 1866, - [1901] = 1874, - [1902] = 1902, - [1903] = 1870, - [1904] = 1869, - [1905] = 1852, - [1906] = 1869, - [1907] = 1870, - [1908] = 1877, - [1909] = 1880, - [1910] = 1910, - [1911] = 1911, - [1912] = 1875, - [1913] = 1864, - [1914] = 1863, - [1915] = 1859, - [1916] = 1896, - [1917] = 1884, - [1918] = 1870, - [1919] = 1077, - [1920] = 1869, - [1921] = 1878, - [1922] = 1852, - [1923] = 1874, - [1924] = 1924, - [1925] = 1860, - [1926] = 1866, - [1927] = 1868, - [1928] = 1873, - [1929] = 1892, - [1930] = 1872, - [1931] = 1873, - [1932] = 1855, - [1933] = 1884, - [1934] = 1873, - [1935] = 1872, - [1936] = 1936, - [1937] = 1852, - [1938] = 1875, - [1939] = 1877, - [1940] = 1870, - [1941] = 1860, - [1942] = 1859, - [1943] = 1869, - [1944] = 1884, - [1945] = 1858, - [1946] = 1877, - [1947] = 1855, - [1948] = 1868, - [1949] = 1860, - [1950] = 1859, - [1951] = 468, - [1952] = 1858, - [1953] = 1863, - [1954] = 1858, - [1955] = 1872, - [1956] = 1864, - [1957] = 1957, - [1958] = 1855, - [1959] = 1866, - [1960] = 1874, - [1961] = 1850, - [1962] = 1962, - [1963] = 1963, - [1964] = 1870, - [1965] = 1863, - [1966] = 1864, - [1967] = 1869, - [1968] = 1863, - [1969] = 1864, - [1970] = 1924, - [1971] = 1162, - [1972] = 1868, - [1973] = 1910, - [1974] = 1974, - [1975] = 1874, - [1976] = 1891, - [1977] = 1977, - [1978] = 1978, - [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1982, - [1983] = 1983, - [1984] = 1984, - [1985] = 1981, + [1895] = 1781, + [1896] = 1880, + [1897] = 1882, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1901, + [1903] = 1886, + [1904] = 1879, + [1905] = 1878, + [1906] = 1906, + [1907] = 1877, + [1908] = 1908, + [1909] = 1878, + [1910] = 1899, + [1911] = 1900, + [1912] = 1906, + [1913] = 1913, + [1914] = 1888, + [1915] = 1880, + [1916] = 1882, + [1917] = 1917, + [1918] = 1888, + [1919] = 1919, + [1920] = 1889, + [1921] = 1890, + [1922] = 1898, + [1923] = 1923, + [1924] = 1898, + [1925] = 1899, + [1926] = 1901, + [1927] = 1886, + [1928] = 1879, + [1929] = 1889, + [1930] = 1890, + [1931] = 1931, + [1932] = 1900, + [1933] = 1906, + [1934] = 1934, + [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, + [1951] = 1951, + [1952] = 1889, + [1953] = 1890, + [1954] = 1879, + [1955] = 1878, + [1956] = 1956, + [1957] = 1177, + [1958] = 1898, + [1959] = 1890, + [1960] = 1889, + [1961] = 1961, + [1962] = 1128, + [1963] = 1821, + [1964] = 1874, + [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] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1990, - [1993] = 1986, - [1994] = 1989, - [1995] = 1988, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 1987, - [2002] = 2002, - [2003] = 1983, - [2004] = 2004, + [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] = 561, - [2008] = 479, - [2009] = 1989, + [2007] = 2007, + [2008] = 2008, + [2009] = 491, [2010] = 2010, [2011] = 2011, [2012] = 2012, [2013] = 2013, - [2014] = 2014, - [2015] = 1982, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 1977, - [2020] = 1982, - [2021] = 1980, - [2022] = 2022, - [2023] = 2013, - [2024] = 1984, - [2025] = 2025, - [2026] = 2000, - [2027] = 1999, - [2028] = 1996, + [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, - [2030] = 474, - [2031] = 1592, - [2032] = 1601, - [2033] = 1989, - [2034] = 1988, - [2035] = 2035, - [2036] = 2025, - [2037] = 1987, - [2038] = 2000, - [2039] = 2039, - [2040] = 2040, - [2041] = 1983, - [2042] = 150, - [2043] = 471, - [2044] = 156, - [2045] = 1999, - [2046] = 1982, - [2047] = 149, + [2030] = 2030, + [2031] = 515, + [2032] = 2007, + [2033] = 2033, + [2034] = 2034, + [2035] = 2008, + [2036] = 2036, + [2037] = 2037, + [2038] = 2037, + [2039] = 522, + [2040] = 504, + [2041] = 622, + [2042] = 2042, + [2043] = 2037, + [2044] = 1164, + [2045] = 2005, + [2046] = 2046, + [2047] = 2013, [2048] = 2048, - [2049] = 2029, + [2049] = 2049, [2050] = 2050, - [2051] = 2013, - [2052] = 2025, - [2053] = 2053, + [2051] = 1595, + [2052] = 2037, + [2053] = 2037, [2054] = 2054, - [2055] = 2011, - [2056] = 1988, - [2057] = 1982, - [2058] = 1978, - [2059] = 1987, - [2060] = 2000, - [2061] = 1999, - [2062] = 1979, + [2055] = 505, + [2056] = 1154, + [2057] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 2060, + [2061] = 2061, + [2062] = 1161, [2063] = 2063, - [2064] = 1996, - [2065] = 481, - [2066] = 482, - [2067] = 1983, - [2068] = 483, + [2064] = 2064, + [2065] = 2049, + [2066] = 2030, + [2067] = 2029, + [2068] = 2006, [2069] = 2069, [2070] = 2070, - [2071] = 1998, - [2072] = 2072, - [2073] = 2018, - [2074] = 2050, - [2075] = 1980, - [2076] = 155, - [2077] = 1158, - [2078] = 2029, - [2079] = 1996, - [2080] = 2080, - [2081] = 2022, - [2082] = 2017, - [2083] = 157, - [2084] = 2084, - [2085] = 2016, - [2086] = 1586, - [2087] = 2087, - [2088] = 2088, - [2089] = 2025, - [2090] = 1996, - [2091] = 160, - [2092] = 488, - [2093] = 2048, - [2094] = 489, - [2095] = 1999, - [2096] = 491, - [2097] = 2000, - [2098] = 1133, + [2071] = 2036, + [2072] = 2033, + [2073] = 2073, + [2074] = 2023, + [2075] = 2075, + [2076] = 2076, + [2077] = 2049, + [2078] = 2034, + [2079] = 2030, + [2080] = 2029, + [2081] = 2006, + [2082] = 2082, + [2083] = 2083, + [2084] = 2049, + [2085] = 2085, + [2086] = 2086, + [2087] = 2046, + [2088] = 2008, + [2089] = 2036, + [2090] = 2033, + [2091] = 2023, + [2092] = 2092, + [2093] = 2093, + [2094] = 2049, + [2095] = 2095, + [2096] = 2034, + [2097] = 2030, + [2098] = 2029, [2099] = 2099, - [2100] = 2100, - [2101] = 1980, - [2102] = 2029, - [2103] = 494, - [2104] = 2029, + [2100] = 2075, + [2101] = 2101, + [2102] = 2006, + [2103] = 2073, + [2104] = 2104, [2105] = 2105, [2106] = 2106, - [2107] = 1983, - [2108] = 1989, - [2109] = 2025, - [2110] = 1988, - [2111] = 1980, - [2112] = 2112, - [2113] = 495, - [2114] = 2114, - [2115] = 2006, - [2116] = 1991, - [2117] = 2117, - [2118] = 2010, - [2119] = 2119, - [2120] = 2120, - [2121] = 2121, - [2122] = 1107, - [2123] = 2123, - [2124] = 2124, - [2125] = 2125, - [2126] = 633, - [2127] = 612, - [2128] = 2128, - [2129] = 614, + [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, [2130] = 2130, - [2131] = 2131, + [2131] = 2042, [2132] = 2132, - [2133] = 2133, - [2134] = 2134, + [2133] = 2021, + [2134] = 2020, [2135] = 2135, [2136] = 2136, - [2137] = 615, + [2137] = 2042, [2138] = 2138, - [2139] = 2139, + [2139] = 2036, [2140] = 2140, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, + [2141] = 2033, + [2142] = 2023, + [2143] = 2036, + [2144] = 2033, [2145] = 2145, [2146] = 2146, [2147] = 2147, - [2148] = 2148, - [2149] = 2149, + [2148] = 2054, + [2149] = 2048, [2150] = 2150, - [2151] = 616, - [2152] = 2152, + [2151] = 2151, + [2152] = 2023, [2153] = 2153, [2154] = 2154, - [2155] = 2155, + [2155] = 1570, [2156] = 2156, - [2157] = 2157, + [2157] = 661, [2158] = 2158, [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 620, + [2162] = 2162, [2163] = 2163, [2164] = 2164, - [2165] = 2165, + [2165] = 660, [2166] = 2166, - [2167] = 2167, - [2168] = 2168, - [2169] = 2169, + [2167] = 2160, + [2168] = 2159, + [2169] = 2158, [2170] = 2170, [2171] = 2171, [2172] = 2172, [2173] = 2173, - [2174] = 2128, + [2174] = 2174, [2175] = 2175, - [2176] = 2176, + [2176] = 658, [2177] = 2177, - [2178] = 2178, - [2179] = 629, + [2178] = 2177, + [2179] = 2171, [2180] = 2180, [2181] = 2181, - [2182] = 2182, + [2182] = 2166, [2183] = 2183, - [2184] = 2184, + [2184] = 656, [2185] = 2185, [2186] = 2186, [2187] = 2187, [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2191, - [2192] = 2123, + [2189] = 2185, + [2190] = 2181, + [2191] = 2162, + [2192] = 2192, [2193] = 2193, - [2194] = 631, - [2195] = 634, - [2196] = 2128, - [2197] = 639, + [2194] = 2161, + [2195] = 2170, + [2196] = 2196, + [2197] = 2197, [2198] = 2198, [2199] = 2199, - [2200] = 641, - [2201] = 2201, + [2200] = 2200, + [2201] = 2187, [2202] = 2202, - [2203] = 642, + [2203] = 2203, [2204] = 2204, - [2205] = 2205, - [2206] = 2124, + [2205] = 2199, + [2206] = 2206, [2207] = 2207, - [2208] = 2208, - [2209] = 2125, + [2208] = 2206, + [2209] = 655, [2210] = 2210, - [2211] = 2211, + [2211] = 643, [2212] = 2212, [2213] = 2213, - [2214] = 2214, + [2214] = 2180, [2215] = 2215, [2216] = 2216, - [2217] = 2134, - [2218] = 2218, - [2219] = 2136, - [2220] = 2220, - [2221] = 2221, + [2217] = 2217, + [2218] = 2212, + [2219] = 641, + [2220] = 2193, + [2221] = 2200, [2222] = 2222, - [2223] = 2138, - [2224] = 644, - [2225] = 2225, - [2226] = 2226, - [2227] = 2169, - [2228] = 645, - [2229] = 2226, + [2223] = 2223, + [2224] = 2203, + [2225] = 2162, + [2226] = 2160, + [2227] = 2204, + [2228] = 2228, + [2229] = 640, [2230] = 2230, - [2231] = 2231, - [2232] = 2222, - [2233] = 2225, - [2234] = 2221, - [2235] = 2139, - [2236] = 1738, + [2231] = 2213, + [2232] = 2232, + [2233] = 2215, + [2234] = 2163, + [2235] = 2217, + [2236] = 2236, [2237] = 2237, - [2238] = 2216, - [2239] = 2215, - [2240] = 2136, - [2241] = 2134, - [2242] = 2128, - [2243] = 2124, - [2244] = 2205, - [2245] = 2125, - [2246] = 2135, - [2247] = 2202, - [2248] = 2201, - [2249] = 2199, - [2250] = 2198, - [2251] = 2208, - [2252] = 2140, - [2253] = 2173, - [2254] = 2172, - [2255] = 2148, - [2256] = 2208, - [2257] = 2207, - [2258] = 2258, - [2259] = 647, - [2260] = 648, - [2261] = 2207, - [2262] = 2204, - [2263] = 2138, - [2264] = 2139, - [2265] = 2140, - [2266] = 649, - [2267] = 2237, - [2268] = 2143, - [2269] = 512, - [2270] = 2169, + [2238] = 2161, + [2239] = 2170, + [2240] = 2171, + [2241] = 2159, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2154, + [2247] = 2180, + [2248] = 2166, + [2249] = 2249, + [2250] = 2188, + [2251] = 2251, + [2252] = 2188, + [2253] = 1579, + [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, + [2267] = 2267, + [2268] = 2268, + [2269] = 2237, + [2270] = 2244, [2271] = 2271, - [2272] = 650, - [2273] = 651, - [2274] = 652, - [2275] = 654, - [2276] = 655, - [2277] = 2277, - [2278] = 2204, - [2279] = 2187, - [2280] = 2185, - [2281] = 656, - [2282] = 2161, - [2283] = 657, - [2284] = 2183, - [2285] = 2182, - [2286] = 658, - [2287] = 2171, - [2288] = 513, - [2289] = 2176, - [2290] = 2175, - [2291] = 2175, - [2292] = 2176, - [2293] = 2171, - [2294] = 2294, - [2295] = 638, - [2296] = 637, - [2297] = 2161, - [2298] = 2182, - [2299] = 2183, - [2300] = 636, - [2301] = 2185, + [2272] = 663, + [2273] = 664, + [2274] = 2274, + [2275] = 2275, + [2276] = 650, + [2277] = 535, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2281, + [2282] = 649, + [2283] = 1766, + [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, + [2301] = 2301, [2302] = 2302, - [2303] = 2187, - [2304] = 2225, + [2303] = 558, + [2304] = 2222, [2305] = 2305, - [2306] = 2231, - [2307] = 2143, - [2308] = 2140, - [2309] = 2139, - [2310] = 515, - [2311] = 514, - [2312] = 571, - [2313] = 630, - [2314] = 2138, - [2315] = 2315, - [2316] = 2230, - [2317] = 2226, - [2318] = 626, - [2319] = 625, - [2320] = 2204, - [2321] = 1957, - [2322] = 624, - [2323] = 2207, - [2324] = 2208, - [2325] = 2125, - [2326] = 623, - [2327] = 2222, - [2328] = 2221, - [2329] = 621, - [2330] = 2218, - [2331] = 566, + [2306] = 2306, + [2307] = 2307, + [2308] = 609, + [2309] = 526, + [2310] = 2310, + [2311] = 2311, + [2312] = 2312, + [2313] = 527, + [2314] = 2181, + [2315] = 528, + [2316] = 2316, + [2317] = 2317, + [2318] = 2260, + [2319] = 2187, + [2320] = 2320, + [2321] = 533, + [2322] = 2322, + [2323] = 2199, + [2324] = 2206, + [2325] = 2325, + [2326] = 2326, + [2327] = 2162, + [2328] = 2274, + [2329] = 2275, + [2330] = 2212, + [2331] = 2213, [2332] = 2332, - [2333] = 2134, - [2334] = 2216, - [2335] = 2136, - [2336] = 567, - [2337] = 2337, + [2333] = 2215, + [2334] = 2228, + [2335] = 2217, + [2336] = 2278, + [2337] = 2286, [2338] = 2338, - [2339] = 2215, - [2340] = 2214, - [2341] = 2225, - [2342] = 2226, - [2343] = 2343, - [2344] = 2344, - [2345] = 1544, - [2346] = 2346, - [2347] = 2222, - [2348] = 2348, - [2349] = 2221, - [2350] = 618, + [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] = 2352, - [2353] = 2216, - [2354] = 2215, + [2352] = 2163, + [2353] = 2353, + [2354] = 2354, [2355] = 2355, - [2356] = 2356, - [2357] = 2213, - [2358] = 2124, - [2359] = 2205, - [2360] = 617, - [2361] = 2128, - [2362] = 2202, - [2363] = 2201, - [2364] = 2199, - [2365] = 2198, - [2366] = 2143, - [2367] = 613, - [2368] = 2173, - [2369] = 2172, - [2370] = 2148, - [2371] = 2220, - [2372] = 609, + [2356] = 2161, + [2357] = 2170, + [2358] = 2171, + [2359] = 2359, + [2360] = 2360, + [2361] = 2361, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2166, + [2367] = 2367, + [2368] = 2188, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2372, [2373] = 2373, - [2374] = 2212, - [2375] = 2138, - [2376] = 2139, - [2377] = 2140, + [2374] = 2193, + [2375] = 2204, + [2376] = 2376, + [2377] = 2377, [2378] = 2378, [2379] = 2379, - [2380] = 2143, - [2381] = 2211, - [2382] = 2382, - [2383] = 2205, - [2384] = 607, - [2385] = 2385, - [2386] = 2386, - [2387] = 2210, - [2388] = 606, - [2389] = 2182, - [2390] = 2271, - [2391] = 2124, - [2392] = 605, - [2393] = 2161, - [2394] = 2169, - [2395] = 2395, - [2396] = 2150, - [2397] = 604, - [2398] = 2171, - [2399] = 2202, - [2400] = 2400, - [2401] = 2175, - [2402] = 2176, - [2403] = 2403, + [2380] = 2222, + [2381] = 2381, + [2382] = 2228, + [2383] = 538, + [2384] = 2384, + [2385] = 1576, + [2386] = 2237, + [2387] = 2244, + [2388] = 2388, + [2389] = 2180, + [2390] = 2390, + [2391] = 2274, + [2392] = 2275, + [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] = 603, - [2406] = 2160, - [2407] = 2182, - [2408] = 2183, - [2409] = 2404, - [2410] = 2185, - [2411] = 2201, - [2412] = 2187, - [2413] = 2199, - [2414] = 2198, - [2415] = 2386, - [2416] = 2338, - [2417] = 2337, - [2418] = 1902, - [2419] = 1541, - [2420] = 2315, - [2421] = 2193, - [2422] = 2204, - [2423] = 2423, + [2405] = 539, + [2406] = 2207, + [2407] = 2407, + [2408] = 2408, + [2409] = 2160, + [2410] = 2159, + [2411] = 2158, + [2412] = 2412, + [2413] = 2413, + [2414] = 2172, + [2415] = 2415, + [2416] = 2341, + [2417] = 2417, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 2217, + [2422] = 2325, + [2423] = 2243, [2424] = 2424, - [2425] = 2207, - [2426] = 2208, - [2427] = 2125, - [2428] = 2428, - [2429] = 2429, - [2430] = 2191, + [2425] = 2242, + [2426] = 2202, + [2427] = 2181, + [2428] = 2196, + [2429] = 2215, + [2430] = 1543, [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2434, - [2435] = 2134, - [2436] = 2190, - [2437] = 2136, - [2438] = 2438, - [2439] = 2225, - [2440] = 2226, - [2441] = 2441, - [2442] = 2277, - [2443] = 2443, - [2444] = 2444, - [2445] = 2189, - [2446] = 2188, - [2447] = 2216, - [2448] = 2215, - [2449] = 2184, - [2450] = 1532, - [2451] = 2451, - [2452] = 2305, - [2453] = 2205, - [2454] = 602, - [2455] = 2455, - [2456] = 2202, - [2457] = 2201, - [2458] = 2199, - [2459] = 2198, - [2460] = 2258, - [2461] = 589, - [2462] = 2173, - [2463] = 2172, - [2464] = 2148, - [2465] = 600, - [2466] = 599, - [2467] = 2395, - [2468] = 2161, - [2469] = 2469, - [2470] = 2470, - [2471] = 2180, - [2472] = 2178, - [2473] = 2473, - [2474] = 2474, - [2475] = 2177, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2173, - [2480] = 2172, - [2481] = 1529, - [2482] = 2167, - [2483] = 1530, - [2484] = 2165, - [2485] = 2164, - [2486] = 2159, - [2487] = 1531, - [2488] = 2158, - [2489] = 598, - [2490] = 2490, - [2491] = 2491, - [2492] = 2492, - [2493] = 2157, - [2494] = 2187, - [2495] = 2185, - [2496] = 2156, - [2497] = 2155, - [2498] = 2183, + [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, + [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] = 1534, - [2501] = 2154, - [2502] = 597, + [2500] = 2500, + [2501] = 2339, + [2502] = 2181, [2503] = 2503, - [2504] = 2504, + [2504] = 2286, [2505] = 2505, - [2506] = 2153, - [2507] = 1558, - [2508] = 1535, - [2509] = 1536, - [2510] = 596, - [2511] = 1538, - [2512] = 595, - [2513] = 2181, - [2514] = 2514, - [2515] = 2149, - [2516] = 2148, - [2517] = 2517, - [2518] = 2176, - [2519] = 2175, - [2520] = 1550, - [2521] = 575, - [2522] = 1559, - [2523] = 1543, - [2524] = 2171, - [2525] = 593, - [2526] = 2474, - [2527] = 2527, - [2528] = 1562, - [2529] = 591, - [2530] = 2147, - [2531] = 2146, - [2532] = 2145, - [2533] = 1528, - [2534] = 1561, - [2535] = 610, - [2536] = 1557, - [2537] = 1556, - [2538] = 2144, - [2539] = 2142, - [2540] = 2160, - [2541] = 2181, - [2542] = 2141, - [2543] = 1555, - [2544] = 1554, - [2545] = 1553, - [2546] = 2404, - [2547] = 2386, - [2548] = 2338, - [2549] = 2337, - [2550] = 2476, - [2551] = 1552, - [2552] = 2474, - [2553] = 1549, - [2554] = 1548, - [2555] = 1547, - [2556] = 1540, - [2557] = 1533, - [2558] = 2315, - [2559] = 2395, - [2560] = 608, - [2561] = 2476, - [2562] = 532, - [2563] = 533, - [2564] = 2258, - [2565] = 2305, - [2566] = 2169, - [2567] = 2186, - [2568] = 536, - [2569] = 587, - [2570] = 540, - [2571] = 541, - [2572] = 2132, - [2573] = 2305, - [2574] = 2315, - [2575] = 2258, - [2576] = 2337, - [2577] = 2338, - [2578] = 2343, - [2579] = 2346, - [2580] = 2348, - [2581] = 2352, - [2582] = 2355, - [2583] = 2356, - [2584] = 543, - [2585] = 2378, - [2586] = 2379, - [2587] = 2386, - [2588] = 2404, - [2589] = 2423, - [2590] = 2424, - [2591] = 2428, - [2592] = 2429, - [2593] = 2431, - [2594] = 2432, - [2595] = 2433, - [2596] = 2434, - [2597] = 2438, - [2598] = 2441, - [2599] = 2443, - [2600] = 2444, - [2601] = 2470, - [2602] = 585, - [2603] = 2490, - [2604] = 2491, - [2605] = 2492, - [2606] = 2503, - [2607] = 2504, - [2608] = 2505, - [2609] = 2152, - [2610] = 582, - [2611] = 544, - [2612] = 545, - [2613] = 584, - [2614] = 546, - [2615] = 552, - [2616] = 2160, - [2617] = 2181, - [2618] = 576, - [2619] = 574, - [2620] = 554, - [2621] = 2395, - [2622] = 555, - [2623] = 556, - [2624] = 581, - [2625] = 2476, - [2626] = 2474, - [2627] = 2161, - [2628] = 2474, - [2629] = 2395, - [2630] = 2476, - [2631] = 557, - [2632] = 559, - [2633] = 2258, - [2634] = 580, - [2635] = 563, - [2636] = 2305, - [2637] = 2315, - [2638] = 2337, - [2639] = 2338, - [2640] = 2386, - [2641] = 2404, - [2642] = 578, - [2643] = 565, - [2644] = 570, - [2645] = 572, - [2646] = 573, - [2647] = 2160, - [2648] = 2181, - [2649] = 577, - [2650] = 590, - [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2655, - [2659] = 2657, - [2660] = 2652, - [2661] = 2661, - [2662] = 2662, - [2663] = 2653, - [2664] = 2655, - [2665] = 2654, - [2666] = 2666, - [2667] = 2654, - [2668] = 2657, - [2669] = 2655, - [2670] = 2670, - [2671] = 2671, - [2672] = 2652, - [2673] = 2653, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2678, - [2679] = 2679, - [2680] = 2657, - [2681] = 2679, - [2682] = 2655, - [2683] = 2653, - [2684] = 2679, - [2685] = 2652, - [2686] = 2657, + [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] = 2687, + [2690] = 2690, [2691] = 2691, - [2692] = 2654, - [2693] = 2693, - [2694] = 2694, + [2692] = 2690, + [2693] = 2687, + [2694] = 2691, [2695] = 2695, [2696] = 2696, [2697] = 2697, - [2698] = 2695, - [2699] = 2697, - [2700] = 2653, - [2701] = 2696, - [2702] = 2679, - [2703] = 2703, - [2704] = 2662, - [2705] = 2656, - [2706] = 2661, + [2698] = 2698, + [2699] = 2699, + [2700] = 2698, + [2701] = 2687, + [2702] = 2691, + [2703] = 2689, + [2704] = 2690, + [2705] = 2687, + [2706] = 2690, [2707] = 2707, - [2708] = 2708, + [2708] = 2696, [2709] = 2709, - [2710] = 2687, - [2711] = 2711, + [2710] = 2710, + [2711] = 2699, [2712] = 2712, [2713] = 2713, [2714] = 2714, [2715] = 2715, - [2716] = 2716, - [2717] = 2717, - [2718] = 2715, + [2716] = 2714, + [2717] = 2690, + [2718] = 2714, [2719] = 2719, - [2720] = 2716, - [2721] = 2721, + [2720] = 2715, + [2721] = 2691, [2722] = 2722, - [2723] = 2723, - [2724] = 2707, - [2725] = 2696, - [2726] = 2697, - [2727] = 2695, - [2728] = 2656, - [2729] = 2662, - [2730] = 2679, - [2731] = 2679, + [2723] = 2691, + [2724] = 2724, + [2725] = 2725, + [2726] = 2726, + [2727] = 2698, + [2728] = 2714, + [2729] = 2689, + [2730] = 2699, + [2731] = 2696, [2732] = 2732, - [2733] = 2662, - [2734] = 2656, - [2735] = 2661, - [2736] = 2695, - [2737] = 2697, - [2738] = 2696, + [2733] = 2688, + [2734] = 2715, + [2735] = 2696, + [2736] = 2736, + [2737] = 2715, + [2738] = 2738, [2739] = 2739, [2740] = 2740, - [2741] = 2707, - [2742] = 2661, - [2743] = 2740, - [2744] = 2713, - [2745] = 2687, - [2746] = 2654, - [2747] = 2713, - [2748] = 1743, - [2749] = 2716, - [2750] = 2732, - [2751] = 2715, - [2752] = 2722, - [2753] = 2722, - [2754] = 2721, - [2755] = 2719, - [2756] = 2703, - [2757] = 1867, - [2758] = 2707, - [2759] = 2696, - [2760] = 2713, - [2761] = 2697, - [2762] = 2716, - [2763] = 2695, - [2764] = 2687, - [2765] = 2679, + [2741] = 2741, + [2742] = 2724, + [2743] = 2725, + [2744] = 2726, + [2745] = 2740, + [2746] = 2697, + [2747] = 2714, + [2748] = 2748, + [2749] = 2698, + [2750] = 2707, + [2751] = 2696, + [2752] = 2726, + [2753] = 2688, + [2754] = 2725, + [2755] = 2755, + [2756] = 2724, + [2757] = 2741, + [2758] = 2758, + [2759] = 2759, + [2760] = 2758, + [2761] = 2761, + [2762] = 2762, + [2763] = 2741, + [2764] = 1775, + [2765] = 2715, [2766] = 2766, - [2767] = 2662, - [2768] = 2656, - [2769] = 2661, - [2770] = 2715, - [2771] = 2771, + [2767] = 2767, + [2768] = 2724, + [2769] = 2725, + [2770] = 2770, + [2771] = 2740, [2772] = 2772, - [2773] = 2713, + [2773] = 2726, [2774] = 2774, - [2775] = 2716, - [2776] = 2776, - [2777] = 2666, - [2778] = 2666, - [2779] = 2666, - [2780] = 2666, + [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, + [2799] = 2799, + [2800] = 2689, + [2801] = 2688, + [2802] = 2699, + [2803] = 2688, + [2804] = 2804, + [2805] = 2805, + [2806] = 2806, + [2807] = 2807, + [2808] = 2748, + [2809] = 2809, + [2810] = 2755, + [2811] = 2748, + [2812] = 2707, + [2813] = 2707, + [2814] = 2707, + [2815] = 2815, }; static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { @@ -5396,94 +5452,91 @@ static inline bool sym_private_property_identifier_character_set_1(int32_t c) { static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); + if (eof) ADVANCE(205); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(354); if (lookahead == '#') ADVANCE(11); - if (lookahead == '$') ADVANCE(555); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(288); - if (lookahead == '/') ADVANCE(396); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(278); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(155); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(527); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(501); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'o') ADVANCE(488); - if (lookahead == 's') ADVANCE(545); - if (lookahead == 't') ADVANCE(461); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(332); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(432); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(197) + lookahead == 8233) ADVANCE(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(194) if (lookahead != 0 && - lookahead > 31) ADVANCE(565); + lookahead > 31) ADVANCE(541); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(571); + if (lookahead == '\n') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); END_STATE(); case 2: - if (lookahead == '\n') SKIP(48) + if (lookahead == '\n') SKIP(54) if (lookahead == ' ') ADVANCE(2); - if (lookahead == '-') ADVANCE(267); - if (lookahead == '/') ADVANCE(266); - if (lookahead == '<') ADVANCE(277); - if (lookahead == '{') ADVANCE(219); - if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(270); + 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 != 0 && lookahead != '>' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(263); END_STATE(); case 3: if (lookahead == '\n') SKIP(3) - if (lookahead == '-') ADVANCE(263); - if (lookahead == '/') ADVANCE(261); - if (lookahead == '<') ADVANCE(260); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(262); - if (lookahead != 0) ADVANCE(259); + if (lookahead == '/') ADVANCE(257); + if (lookahead == '<') ADVANCE(259); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(258); + if (lookahead != 0) ADVANCE(256); END_STATE(); case 4: if (lookahead == '\n') SKIP(53) - if (lookahead == '-') ADVANCE(399); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '<') ADVANCE(398); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(397); - if (lookahead != 0) ADVANCE(403); + 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); END_STATE(); case 5: if (lookahead == ' ') ADVANCE(5); @@ -5492,1003 +5545,1063 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(263); END_STATE(); case 6: if (lookahead == ' ') ADVANCE(6); - if (lookahead == '*') ADVANCE(271); + if (lookahead == '*') ADVANCE(265); if (lookahead == '\n' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(46); - if (lookahead != 0) ADVANCE(272); + lookahead == '}') ADVANCE(45); + if (lookahead != 0) ADVANCE(266); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(281); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(428); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) if (lookahead != 0 && - lookahead > 31) ADVANCE(565); + lookahead > 31) ADVANCE(541); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(281); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'o') ADVANCE(488); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(452); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(427); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(8) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(565); + lookahead != '}') ADVANCE(541); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(281); - if (lookahead == '=') ADVANCE(254); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(445); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(420); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(565); + lookahead != ']') ADVANCE(541); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(281); - if (lookahead == '=') ADVANCE(254); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(10) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(565); + lookahead != ']') ADVANCE(541); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(209); - if (lookahead == '\\') ADVANCE(157); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(567); + if (lookahead == '!') ADVANCE(206); + if (lookahead == '\\') ADVANCE(154); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(543); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(49); + 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 == 8232 || + lookahead == 8233) ADVANCE(429); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != '^' && + lookahead != '|') ADVANCE(541); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(49); - if (lookahead == 't') ADVANCE(80); + 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 == 8232 || + lookahead == 8233) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(13) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(541); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(54); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(429); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|' && + lookahead != '}') ADVANCE(541); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(54); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 's') ADVANCE(545); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(438); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(409); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(410); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(434); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(415); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|' && + lookahead != '}') ADVANCE(541); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(435); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(419); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(440); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(421); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(444); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(446); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(424); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); case 22: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) if (lookahead != 0 && lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && + (lookahead < ')' || '@' < lookahead) && lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(565); + (lookahead < '{' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(449); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(432); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) if (lookahead != 0 && lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && + (lookahead < ')' || '@' < lookahead) && lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(565); + (lookahead < '{' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == '|') ADVANCE(332); - if (lookahead == '}') ADVANCE(221); + 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 == 8232 || - lookahead == 8233) ADVANCE(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(445); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(24) if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(565); + lookahead > '#' && + (lookahead < '\'' || '@' < lookahead) && + lookahead != '~') ADVANCE(541); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(339); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == '|') ADVANCE(332); - if (lookahead == '}') ADVANCE(221); + 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 == 8232 || - lookahead == 8233) ADVANCE(457); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(470); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(25) if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && + lookahead > '#' && + (lookahead < '\'' || '@' < lookahead) && lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(565); + lookahead != '~') ADVANCE(541); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(338); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); + 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 == 8232 || - lookahead == 8233) ADVANCE(494); + lookahead == 8233) ADVANCE(444); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(26) if (lookahead != 0 && lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && + (lookahead < '\'' || '@' < lookahead) && lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(565); + (lookahead < '{' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(339); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(332); - if (lookahead == '}') ADVANCE(221); + 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 == 8232 || - lookahead == 8233) ADVANCE(470); + lookahead == 8233) ADVANCE(469); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(27) if (lookahead != 0 && lookahead > '#' && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(565); + lookahead != ']' && + lookahead != '}' && + lookahead != '~') ADVANCE(541); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(339); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'o') ADVANCE(488); - if (lookahead == '|') ADVANCE(332); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(469); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(28) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(565); + 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 (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) END_STATE(); case 29: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(338); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '[') ADVANCE(257); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'i') ADVANCE(115); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(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 (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) END_STATE(); case 30: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(338); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '[') ADVANCE(257); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'i') ADVANCE(409); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(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(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 (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(30) END_STATE(); case 31: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(338); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '=') ADVANCE(254); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '[') ADVANCE(257); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(138); - if (lookahead == 'e') ADVANCE(105); - if (lookahead == 'f') ADVANCE(131); - if (lookahead == 'i') ADVANCE(115); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 'w') ADVANCE(98); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); + 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 (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) END_STATE(); case 32: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(338); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'i') ADVANCE(115); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == '|') ADVANCE(333); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(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 (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) END_STATE(); case 33: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(338); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(280); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'i') ADVANCE(409); - if (lookahead == 'o') ADVANCE(408); - if (lookahead == '|') ADVANCE(333); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(32) + 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 == 8232 || + lookahead == 8233) ADVANCE(434); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(33) + if (lookahead != 0 && + lookahead > '!' && + (lookahead < '%' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 34: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(212); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(50); - if (lookahead == '.') ADVANCE(54); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(12); - if (lookahead == '=') ADVANCE(256); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); + 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 == 8232 || - lookahead == 8233) ADVANCE(459); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(533); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(34) if (lookahead != 0 && lookahead > '!' && (lookahead < '%' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(565); + (lookahead < '|' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 35: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(212); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(50); - if (lookahead == '/') ADVANCE(43); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(12); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); + 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 == 8232 || - lookahead == 8233) ADVANCE(558); + lookahead == 8233) ADVANCE(430); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(35) if (lookahead != 0 && lookahead > '!' && - (lookahead < '%' || '@' < lookahead) && + (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(565); + (lookahead < '{' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 36: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '-') ADVANCE(50); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '0') ADVANCE(415); - if (lookahead == '<') ADVANCE(12); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 's') ADVANCE(545); + 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 == 8232 || - lookahead == 8233) ADVANCE(455); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(433); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(36) if (lookahead != 0 && lookahead > '!' && @@ -6496,28 +6609,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(565); + (lookahead < '{' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 37: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '-') ADVANCE(50); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '0') ADVANCE(415); - if (lookahead == '<') ADVANCE(12); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 's') ADVANCE(545); + 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 == 8232 || - lookahead == 8233) ADVANCE(458); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 8233) ADVANCE(433); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(37) if (lookahead != 0 && lookahead > '!' && @@ -6525,3461 +6641,3248 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(565); + (lookahead < '|' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 38: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '*') ADVANCE(212); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(50); - if (lookahead == '.') ADVANCE(54); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(13); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 's') ADVANCE(545); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(458); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(38) - if (lookahead != 0 && - lookahead > '!' && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(565); + 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) END_STATE(); case 39: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(50); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(396); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '=') ADVANCE(253); - if (lookahead == '>') ADVANCE(283); - if (lookahead == ']') ADVANCE(258); - if (lookahead == 'i') ADVANCE(118); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(40) + 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) END_STATE(); case 40: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(50); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(43); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(276); - if (lookahead == '=') ADVANCE(253); - if (lookahead == '>') ADVANCE(283); - if (lookahead == ']') ADVANCE(258); - if (lookahead == 'i') ADVANCE(118); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(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); END_STATE(); case 41: - if (lookahead == '"') ADVANCE(360); - if (lookahead == '-') ADVANCE(368); - if (lookahead == '/') ADVANCE(364); - if (lookahead == '<') ADVANCE(363); - if (lookahead == '\\') ADVANCE(159); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(367); - if (lookahead != 0) ADVANCE(372); + 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); END_STATE(); case 42: - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '-') ADVANCE(379); - if (lookahead == '/') ADVANCE(375); - if (lookahead == '<') ADVANCE(374); - if (lookahead == '\\') ADVANCE(159); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(378); - if (lookahead != 0) ADVANCE(383); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '/') ADVANCE(373); END_STATE(); case 43: - if (lookahead == '*') ADVANCE(46); - if (lookahead == '/') ADVANCE(391); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '/') ADVANCE(373); + if (lookahead == '>') ADVANCE(285); END_STATE(); case 44: - if (lookahead == '*') ADVANCE(46); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '>') ADVANCE(291); + if (lookahead == '*') ADVANCE(44); + if (lookahead == '/') ADVANCE(372); + if (lookahead != 0) ADVANCE(45); END_STATE(); case 45: - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(388); - if (lookahead != 0) ADVANCE(46); + if (lookahead == '*') ADVANCE(44); + if (lookahead != 0) ADVANCE(45); END_STATE(); case 46: - if (lookahead == '*') ADVANCE(45); - if (lookahead != 0) ADVANCE(46); + if (lookahead == '.') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 47: - if (lookahead == '-') ADVANCE(391); + if (lookahead == '.') ADVANCE(295); END_STATE(); case 48: - if (lookahead == '-') ADVANCE(267); - if (lookahead == '/') ADVANCE(266); - if (lookahead == '<') ADVANCE(277); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '\n' || - lookahead == ' ') SKIP(48) - if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(270); - if (lookahead != 0 && - lookahead != '>' && - lookahead != '}') ADVANCE(269); + if (lookahead == '.') ADVANCE(295); + if (lookahead == '?') ADVANCE(345); END_STATE(); case 49: - if (lookahead == '-') ADVANCE(47); + if (lookahead == '.') ADVANCE(295); + if (lookahead == '?') ADVANCE(344); END_STATE(); case 50: - if (lookahead == '-') ADVANCE(60); + if (lookahead == '.') ADVANCE(311); END_STATE(); case 51: - if (lookahead == '-') ADVANCE(50); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(44); - if (lookahead == ':') ADVANCE(246); - if (lookahead == '<') ADVANCE(12); - if (lookahead == '=') ADVANCE(253); - if (lookahead == '>') ADVANCE(283); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '{') ADVANCE(219); + 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(557); + 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(433); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); if (lookahead != 0 && - lookahead > '~') ADVANCE(565); + lookahead > '~') ADVANCE(541); END_STATE(); case 52: - if (lookahead == '-') ADVANCE(50); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '<') ADVANCE(12); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(552); - if (lookahead == '{') ADVANCE(219); + if (lookahead == '/') ADVANCE(42); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(528); + if (lookahead == '{') ADVANCE(216); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(484); + 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(565); + (lookahead < '|' || '~' < lookahead)) ADVANCE(541); END_STATE(); case 53: - if (lookahead == '-') ADVANCE(50); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '<') ADVANCE(12); + if (lookahead == '/') ADVANCE(42); if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(53) END_STATE(); case 54: - if (lookahead == '.') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(430); + 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); END_STATE(); case 55: - if (lookahead == '.') ADVANCE(301); - if (lookahead == '?') ADVANCE(351); + if (lookahead == '=') ADVANCE(341); END_STATE(); case 56: - if (lookahead == '.') ADVANCE(301); - if (lookahead == '?') ADVANCE(350); + if (lookahead == '=') ADVANCE(339); END_STATE(); case 57: - if (lookahead == '.') ADVANCE(317); + if (lookahead == '>') ADVANCE(260); END_STATE(); case 58: - if (lookahead == '=') ADVANCE(347); + if (lookahead == '>') ADVANCE(261); END_STATE(); case 59: - if (lookahead == '=') ADVANCE(345); + if (lookahead == '\\') ADVANCE(154); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(543); END_STATE(); case 60: - if (lookahead == '>') ADVANCE(391); + if (lookahead == '\\') ADVANCE(192); + if (lookahead == ']') ADVANCE(378); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(60); END_STATE(); case 61: - if (lookahead == '>') ADVANCE(264); + if (lookahead == 'a') ADVANCE(147); END_STATE(); case 62: - if (lookahead == '>') ADVANCE(265); + if (lookahead == 'a') ADVANCE(136); + if (lookahead == 'l') ADVANCE(65); + if (lookahead == 'o') ADVANCE(116); END_STATE(); case 63: - if (lookahead == '\\') ADVANCE(157); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(567); + if (lookahead == 'a') ADVANCE(128); END_STATE(); case 64: - if (lookahead == '\\') ADVANCE(195); - if (lookahead == ']') ADVANCE(403); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(64); + if (lookahead == 'a') ADVANCE(153); END_STATE(); case 65: - if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 66: - if (lookahead == 'a') ADVANCE(140); - if (lookahead == 'l') ADVANCE(69); - if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'a') ADVANCE(129); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'a') ADVANCE(99); END_STATE(); case 68: - if (lookahead == 'a') ADVANCE(156); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 69: - if (lookahead == 'a') ADVANCE(139); + if (lookahead == 'a') ADVANCE(118); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(133); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(103); + if (lookahead == 'c') ADVANCE(290); END_STATE(); case 72: - if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'c') ADVANCE(95); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(122); + if (lookahead == 'c') ADVANCE(148); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(153); + if (lookahead == 'c') ADVANCE(85); END_STATE(); case 75: - if (lookahead == 'c') ADVANCE(296); + if (lookahead == 'd') ADVANCE(133); END_STATE(); case 76: - if (lookahead == 'c') ADVANCE(99); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 77: - if (lookahead == 'c') ADVANCE(151); + if (lookahead == 'e') ADVANCE(57); END_STATE(); case 78: - if (lookahead == 'c') ADVANCE(89); + if (lookahead == 'e') ADVANCE(244); END_STATE(); case 79: - if (lookahead == 'd') ADVANCE(137); + if (lookahead == 'e') ADVANCE(227); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(112); + if (lookahead == 'e') ADVANCE(240); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(61); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(247); + if (lookahead == 'e') ADVANCE(58); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'e') ADVANCE(91); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(243); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(112); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'e') ADVANCE(145); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(62); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 'f') ADVANCE(237); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(116); + if (lookahead == 'f') ADVANCE(346); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'f') ADVANCE(64); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(114); + if (lookahead == 'g') ADVANCE(81); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(92); END_STATE(); case 93: - if (lookahead == 'f') ADVANCE(240); + if (lookahead == 'g') ADVANCE(87); END_STATE(); case 94: - if (lookahead == 'f') ADVANCE(352); + if (lookahead == 'h') ADVANCE(96); END_STATE(); case 95: - if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'h') ADVANCE(246); END_STATE(); case 96: - if (lookahead == 'g') ADVANCE(85); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(96); + if (lookahead == 'i') ADVANCE(105); END_STATE(); case 97: - if (lookahead == 'g') ADVANCE(91); + if (lookahead == 'i') ADVANCE(119); + if (lookahead == 'r') ADVANCE(120); + if (lookahead == 'u') ADVANCE(115); END_STATE(); case 98: - if (lookahead == 'h') ADVANCE(100); + if (lookahead == 'i') ADVANCE(123); END_STATE(); case 99: - if (lookahead == 'h') ADVANCE(249); + if (lookahead == 'i') ADVANCE(142); END_STATE(); case 100: - if (lookahead == 'i') ADVANCE(109); + if (lookahead == 'l') ADVANCE(61); END_STATE(); case 101: - if (lookahead == 'i') ADVANCE(123); - if (lookahead == 'r') ADVANCE(124); - if (lookahead == 'u') ADVANCE(119); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 102: - if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'l') ADVANCE(138); + if (lookahead == 'x') ADVANCE(125); END_STATE(); case 103: - if (lookahead == 'i') ADVANCE(145); + if (lookahead == 'l') ADVANCE(157); END_STATE(); case 104: - if (lookahead == 'l') ADVANCE(65); + if (lookahead == 'l') ADVANCE(103); END_STATE(); case 105: - if (lookahead == 'l') ADVANCE(142); + if (lookahead == 'l') ADVANCE(80); END_STATE(); case 106: - if (lookahead == 'l') ADVANCE(142); - if (lookahead == 'x') ADVANCE(129); + if (lookahead == 'l') ADVANCE(146); END_STATE(); case 107: - if (lookahead == 'l') ADVANCE(160); + if (lookahead == 'l') ADVANCE(70); END_STATE(); case 108: - if (lookahead == 'l') ADVANCE(107); + if (lookahead == 'm') ADVANCE(124); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(84); + if (lookahead == 'm') ADVANCE(219); END_STATE(); case 110: - if (lookahead == 'l') ADVANCE(149); + if (lookahead == 'm') ADVANCE(126); END_STATE(); case 111: - if (lookahead == 'l') ADVANCE(74); + if (lookahead == 'n') ADVANCE(236); END_STATE(); case 112: - if (lookahead == 'm') ADVANCE(128); + if (lookahead == 'n') ADVANCE(75); END_STATE(); case 113: - if (lookahead == 'm') ADVANCE(222); + if (lookahead == 'n') ADVANCE(292); END_STATE(); case 114: - if (lookahead == 'm') ADVANCE(130); + if (lookahead == 'n') ADVANCE(233); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(239); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 116: - if (lookahead == 'n') ADVANCE(79); + if (lookahead == 'n') ADVANCE(137); END_STATE(); case 117: - if (lookahead == 'n') ADVANCE(298); + if (lookahead == 'n') ADVANCE(71); END_STATE(); case 118: - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 119: - if (lookahead == 'n') ADVANCE(77); + if (lookahead == 'n') ADVANCE(68); END_STATE(); case 120: - if (lookahead == 'n') ADVANCE(141); + if (lookahead == 'o') ADVANCE(109); END_STATE(); case 121: - if (lookahead == 'n') ADVANCE(75); + if (lookahead == 'o') ADVANCE(90); END_STATE(); case 122: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'o') ADVANCE(130); END_STATE(); case 123: - if (lookahead == 'n') ADVANCE(72); + if (lookahead == 'o') ADVANCE(113); END_STATE(); case 124: - if (lookahead == 'o') ADVANCE(113); + if (lookahead == 'p') ADVANCE(100); END_STATE(); case 125: - if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(122); + if (lookahead == 't') ADVANCE(86); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(134); + if (lookahead == 'p') ADVANCE(107); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(117); + if (lookahead == 'r') ADVANCE(120); END_STATE(); case 128: - if (lookahead == 'p') ADVANCE(104); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 129: - if (lookahead == 'p') ADVANCE(126); - if (lookahead == 't') ADVANCE(90); + if (lookahead == 'r') ADVANCE(221); END_STATE(); case 130: - if (lookahead == 'p') ADVANCE(111); + if (lookahead == 'r') ADVANCE(144); END_STATE(); case 131: - if (lookahead == 'r') ADVANCE(124); + if (lookahead == 's') ADVANCE(158); + if (lookahead == 'w') ADVANCE(67); END_STATE(); case 132: - if (lookahead == 'r') ADVANCE(97); + if (lookahead == 's') ADVANCE(286); END_STATE(); case 133: - if (lookahead == 'r') ADVANCE(224); + if (lookahead == 's') ADVANCE(288); END_STATE(); case 134: - if (lookahead == 'r') ADVANCE(147); + if (lookahead == 's') ADVANCE(214); END_STATE(); case 135: - if (lookahead == 's') ADVANCE(161); - if (lookahead == 'w') ADVANCE(71); + if (lookahead == 's') ADVANCE(132); END_STATE(); case 136: - if (lookahead == 's') ADVANCE(292); + if (lookahead == 's') ADVANCE(78); + if (lookahead == 't') ADVANCE(72); END_STATE(); case 137: - if (lookahead == 's') ADVANCE(294); + if (lookahead == 's') ADVANCE(143); END_STATE(); case 138: - if (lookahead == 's') ADVANCE(217); + if (lookahead == 's') ADVANCE(79); END_STATE(); case 139: - if (lookahead == 's') ADVANCE(136); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 140: - if (lookahead == 's') ADVANCE(82); - if (lookahead == 't') ADVANCE(76); + if (lookahead == 't') ADVANCE(1); END_STATE(); case 141: - if (lookahead == 's') ADVANCE(146); + if (lookahead == 't') ADVANCE(223); END_STATE(); case 142: - if (lookahead == 's') ADVANCE(83); + if (lookahead == 't') ADVANCE(231); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(1); + if (lookahead == 't') ADVANCE(225); END_STATE(); case 144: - if (lookahead == 't') ADVANCE(226); + if (lookahead == 't') ADVANCE(207); END_STATE(); case 145: - if (lookahead == 't') ADVANCE(234); + if (lookahead == 't') ADVANCE(544); END_STATE(); case 146: - if (lookahead == 't') ADVANCE(228); + if (lookahead == 't') ADVANCE(212); END_STATE(); case 147: - if (lookahead == 't') ADVANCE(210); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(568); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 149: - if (lookahead == 't') ADVANCE(215); + if (lookahead == 't') ADVANCE(69); END_STATE(); case 150: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 't') ADVANCE(82); END_STATE(); case 151: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(73); + if (lookahead == 'u') ADVANCE(160); + if (lookahead == 'x') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(371); + if (lookahead != 0) ADVANCE(368); END_STATE(); case 153: - if (lookahead == 't') ADVANCE(88); + if (lookahead == 'u') ADVANCE(106); END_STATE(); case 154: - if (lookahead == 't') ADVANCE(92); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 155: - if (lookahead == 'u') ADVANCE(163); - if (lookahead == 'x') ADVANCE(187); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(387); - if (lookahead != 0) ADVANCE(384); + if (lookahead == 'u') ADVANCE(162); END_STATE(); case 156: - if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'u') ADVANCE(163); + if (lookahead == 'x') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(371); + if (lookahead != 0) ADVANCE(368); END_STATE(); case 157: - if (lookahead == 'u') ADVANCE(164); + if (lookahead == 'y') ADVANCE(248); END_STATE(); case 158: - if (lookahead == 'u') ADVANCE(165); + if (lookahead == 'y') ADVANCE(117); END_STATE(); case 159: - if (lookahead == 'u') ADVANCE(166); - if (lookahead == 'x') ADVANCE(187); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(387); - if (lookahead != 0) ADVANCE(384); + if (lookahead == '{') ADVANCE(375); END_STATE(); case 160: - if (lookahead == 'y') ADVANCE(251); + if (lookahead == '{') ADVANCE(179); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); END_STATE(); case 161: - if (lookahead == 'y') ADVANCE(121); + if (lookahead == '{') ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(190); END_STATE(); case 162: - if (lookahead == '{') ADVANCE(395); + if (lookahead == '{') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(191); END_STATE(); case 163: - if (lookahead == '{') ADVANCE(182); + if (lookahead == '{') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(192); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(181); END_STATE(); case 164: - if (lookahead == '{') ADVANCE(185); + if (lookahead == '}') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(193); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); END_STATE(); case 165: - if (lookahead == '{') ADVANCE(186); + if (lookahead == '}') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); case 166: - if (lookahead == '{') ADVANCE(188); + if (lookahead == '}') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); END_STATE(); case 167: - if (lookahead == '}') ADVANCE(565); + if (lookahead == '}') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); case 168: - if (lookahead == '}') ADVANCE(567); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); + if (lookahead == '+' || + lookahead == '-') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); END_STATE(); case 169: - if (lookahead == '}') ADVANCE(384); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); + if (lookahead == '0' || + lookahead == '1') ADVANCE(400); END_STATE(); case 170: - if (lookahead == '}') ADVANCE(385); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(401); END_STATE(); case 171: - if (lookahead == '+' || - lookahead == '-') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); END_STATE(); case 172: - if (lookahead == '0' || - lookahead == '1') ADVANCE(425); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); case 173: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(403); END_STATE(); case 174: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); END_STATE(); case 175: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(430); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(541); END_STATE(); case 176: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(428); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(543); END_STATE(); case 177: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(429); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(368); END_STATE(); case 178: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); case 179: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); case 180: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(384); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(369); END_STATE(); case 181: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(427); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); END_STATE(); case 182: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); case 183: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(385); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); END_STATE(); case 184: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(177); END_STATE(); case 185: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); END_STATE(); case 186: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(180); END_STATE(); case 187: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(180); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(176); END_STATE(); case 188: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(175); END_STATE(); case 189: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(183); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); END_STATE(); case 190: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); END_STATE(); case 191: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(178); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(188); END_STATE(); case 192: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); - END_STATE(); - case 193: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(190); - END_STATE(); - case 194: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(191); - END_STATE(); - case 195: if (lookahead != 0 && - lookahead != '\n') ADVANCE(64); + lookahead != '\n') ADVANCE(60); END_STATE(); - case 196: + case 193: if (lookahead != 0 && - lookahead != '\n') ADVANCE(403); + lookahead != '\n') ADVANCE(378); END_STATE(); - case 197: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); + case 194: + if (eof) ADVANCE(205); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(354); if (lookahead == '#') ADVANCE(11); - if (lookahead == '$') ADVANCE(555); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(288); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(278); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(527); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(501); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'o') ADVANCE(488); - if (lookahead == 's') ADVANCE(545); - if (lookahead == 't') ADVANCE(461); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(332); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(432); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(197) + lookahead == 8233) ADVANCE(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(194) if (lookahead != 0 && - lookahead > 31) ADVANCE(565); + lookahead > 31) ADVANCE(541); END_STATE(); - case 198: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(281); - if (lookahead == '=') ADVANCE(254); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(437); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(198) + lookahead == 8233) ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(195) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(565); + lookahead != ']') ADVANCE(541); END_STATE(); - case 199: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(356); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '%') ADVANCE(340); - if (lookahead == '&') ADVANCE(329); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '*') ADVANCE(214); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(281); - if (lookahead == '=') ADVANCE(254); - if (lookahead == '>') ADVANCE(285); - if (lookahead == '?') ADVANCE(56); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '^') ADVANCE(330); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(333); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(442); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(199) + lookahead == 8233) ADVANCE(417); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(196) if (lookahead != 0 && lookahead > 31 && (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(565); + lookahead != ']') ADVANCE(541); END_STATE(); - case 200: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); + case 197: + if (eof) ADVANCE(205); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(354); if (lookahead == '#') ADVANCE(11); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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 == 8232 || - lookahead == 8233) ADVANCE(439); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(200) + lookahead == 8233) ADVANCE(414); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(197) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); - case 201: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(436); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(201) + lookahead == 8233) ADVANCE(411); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(198) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); - case 202: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(202) + lookahead == 8233) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(199) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); - case 203: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(443); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(203) + lookahead == 8233) ADVANCE(418); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(200) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); - case 204: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(471); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(204) + lookahead == 8233) ADVANCE(425); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(201) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); - case 205: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(355); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '#') ADVANCE(63); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == '+') ADVANCE(334); - if (lookahead == '-') ADVANCE(336); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '/') ADVANCE(338); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(282); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(471); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '}') ADVANCE(221); - if (lookahead == '~') ADVANCE(357); + 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); if (lookahead == 8232 || - lookahead == 8233) ADVANCE(451); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(205) + lookahead == 8233) ADVANCE(426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(202) if (lookahead != 0 && lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '|') ADVANCE(565); + lookahead != '|') ADVANCE(541); END_STATE(); - case 206: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(58); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '$') ADVANCE(162); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(339); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(159); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(135); - if (lookahead == 'c') ADVANCE(66); - if (lookahead == 'd') ADVANCE(86); - if (lookahead == 'e') ADVANCE(106); - if (lookahead == 'f') ADVANCE(101); - if (lookahead == 'i') ADVANCE(115); - if (lookahead == 'l') ADVANCE(87); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 't') ADVANCE(67); - if (lookahead == 'v') ADVANCE(70); - if (lookahead == 'w') ADVANCE(98); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(332); - if (lookahead == '}') ADVANCE(221); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(207) + 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) END_STATE(); - case 207: - if (eof) ADVANCE(208); - if (lookahead == '!') ADVANCE(58); - if (lookahead == '"') ADVANCE(360); - if (lookahead == '$') ADVANCE(162); - if (lookahead == '%') ADVANCE(341); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '\'') ADVANCE(361); - if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); - if (lookahead == '*') ADVANCE(213); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(220); - if (lookahead == '-') ADVANCE(337); - if (lookahead == '.') ADVANCE(287); - if (lookahead == '/') ADVANCE(339); - if (lookahead == ':') ADVANCE(246); - if (lookahead == ';') ADVANCE(245); - if (lookahead == '<') ADVANCE(279); - if (lookahead == '=') ADVANCE(255); - if (lookahead == '>') ADVANCE(284); - if (lookahead == '?') ADVANCE(55); - if (lookahead == '@') ADVANCE(570); - if (lookahead == '[') ADVANCE(257); - if (lookahead == ']') ADVANCE(258); - if (lookahead == '^') ADVANCE(331); - if (lookahead == '`') ADVANCE(394); - if (lookahead == 'a') ADVANCE(135); - if (lookahead == 'c') ADVANCE(66); - if (lookahead == 'd') ADVANCE(86); - if (lookahead == 'e') ADVANCE(106); - if (lookahead == 'f') ADVANCE(101); - if (lookahead == 'i') ADVANCE(115); - if (lookahead == 'l') ADVANCE(87); - if (lookahead == 'o') ADVANCE(93); - if (lookahead == 't') ADVANCE(67); - if (lookahead == 'v') ADVANCE(70); - if (lookahead == 'w') ADVANCE(98); - if (lookahead == '{') ADVANCE(219); - if (lookahead == '|') ADVANCE(332); - if (lookahead == '}') ADVANCE(221); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(207) + 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) END_STATE(); - case 208: + case 205: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 209: + case 206: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(209); + lookahead != '\n') ADVANCE(206); END_STATE(); - case 210: + case 207: ACCEPT_TOKEN(anon_sym_export); END_STATE(); - case 211: + case 208: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 212: + case 209: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 213: + case 210: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '=') ADVANCE(304); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '=') ADVANCE(298); END_STATE(); - case 214: + case 211: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(342); + if (lookahead == '*') ADVANCE(336); END_STATE(); - case 215: + case 212: ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 216: + case 213: ACCEPT_TOKEN(anon_sym_default); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 217: + case 214: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 218: + case 215: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 219: + case 216: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 220: + case 217: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 221: + case 218: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 222: + case 219: ACCEPT_TOKEN(anon_sym_from); END_STATE(); - case 223: + case 220: ACCEPT_TOKEN(anon_sym_from); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 224: + case 221: ACCEPT_TOKEN(anon_sym_var); END_STATE(); - case 225: + case 222: ACCEPT_TOKEN(anon_sym_var); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 226: + case 223: ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 227: + case 224: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 228: + case 225: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 229: + case 226: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 230: + case 227: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 231: + case 228: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 232: + case 229: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 233: + case 230: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 234: + case 231: ACCEPT_TOKEN(anon_sym_await); END_STATE(); - case 235: + case 232: ACCEPT_TOKEN(anon_sym_await); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 236: + case 233: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 237: + case 234: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(548); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(524); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 238: + case 235: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(412); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 's') ADVANCE(387); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 239: + case 236: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(152); + if (lookahead == 's') ADVANCE(149); END_STATE(); - case 240: + case 237: ACCEPT_TOKEN(anon_sym_of); END_STATE(); - case 241: + case 238: ACCEPT_TOKEN(anon_sym_of); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 242: + case 239: ACCEPT_TOKEN(anon_sym_of); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 243: + case 240: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 244: + case 241: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 245: + case 242: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 246: + case 243: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 247: + case 244: ACCEPT_TOKEN(anon_sym_case); END_STATE(); - case 248: + case 245: ACCEPT_TOKEN(anon_sym_case); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 249: + case 246: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 250: + case 247: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 251: + case 248: ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 252: + case 249: ACCEPT_TOKEN(anon_sym_finally); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 253: + case 250: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 254: + case 251: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(345); + if (lookahead == '=') ADVANCE(339); END_STATE(); - case 255: + case 252: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(345); - if (lookahead == '>') ADVANCE(300); + if (lookahead == '=') ADVANCE(339); + if (lookahead == '>') ADVANCE(294); END_STATE(); - case 256: + case 253: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(300); + if (lookahead == '>') ADVANCE(294); END_STATE(); - case 257: + case 254: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 258: + case 255: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 259: - ACCEPT_TOKEN(sym__glimmer_template_content); - END_STATE(); - case 260: + case 256: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '!') ADVANCE(49); - if (lookahead == '/') ADVANCE(154); END_STATE(); - case 261: + case 257: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '/') ADVANCE(391); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '/') ADVANCE(373); END_STATE(); - case 262: + case 258: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '-') ADVANCE(263); - if (lookahead == '/') ADVANCE(261); - if (lookahead == '<') ADVANCE(260); - if (sym__glimmer_template_content_character_set_2(lookahead)) ADVANCE(262); + if (lookahead == '/') ADVANCE(257); + if (lookahead == '<') ADVANCE(259); + if (sym__glimmer_template_content_character_set_2(lookahead)) ADVANCE(258); if (lookahead != 0 && - lookahead != '\n') ADVANCE(259); + lookahead != '\n') ADVANCE(256); END_STATE(); - case 263: + case 259: ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '-') ADVANCE(60); + if (lookahead == '/') ADVANCE(151); END_STATE(); - case 264: + case 260: ACCEPT_TOKEN(anon_sym_LTtemplate_GT); END_STATE(); - case 265: + case 261: ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); END_STATE(); - case 266: + case 262: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(5); - if (lookahead == '*') ADVANCE(272); - if (lookahead == '/') ADVANCE(273); + if (lookahead == '*') ADVANCE(266); + if (lookahead == '/') ADVANCE(267); if (lookahead != 0 && lookahead != '\n' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(263); END_STATE(); - case 267: + case 263: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(5); - if (lookahead == '-') ADVANCE(268); if (lookahead != 0 && lookahead != '\n' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(269); - END_STATE(); - case 268: - ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(5); - if (lookahead == '>') ADVANCE(391); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '<' && - lookahead != '{' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(263); END_STATE(); - case 269: + case 264: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(5); + if (lookahead == ' ') ADVANCE(2); + if (lookahead == '/') ADVANCE(262); + if (aux_sym_jsx_text_token1_character_set_2(lookahead)) ADVANCE(264); if (lookahead != 0 && lookahead != '\n' && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(269); + lookahead != '}') ADVANCE(263); END_STATE(); - case 270: - ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(2); - if (lookahead == '-') ADVANCE(267); - if (lookahead == '/') ADVANCE(266); - if (aux_sym_jsx_text_token1_character_set_2(lookahead)) ADVANCE(270); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(269); - END_STATE(); - case 271: + case 265: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(6); - if (lookahead == '*') ADVANCE(271); - if (lookahead == '/') ADVANCE(269); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '/') ADVANCE(263); if (lookahead == '\n' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(46); - if (lookahead != 0) ADVANCE(272); + lookahead == '}') ADVANCE(45); + if (lookahead != 0) ADVANCE(266); END_STATE(); - case 272: + case 266: ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(6); - if (lookahead == '*') ADVANCE(271); + if (lookahead == '*') ADVANCE(265); if (lookahead == '\n' || lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(46); - if (lookahead != 0) ADVANCE(272); + lookahead == '}') ADVANCE(45); + if (lookahead != 0) ADVANCE(266); END_STATE(); - case 273: + case 267: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(274); + if (lookahead == ' ') ADVANCE(268); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(275); + lookahead == '}') ADVANCE(269); if (lookahead != 0 && - lookahead != '\n') ADVANCE(273); + lookahead != '\n') ADVANCE(267); END_STATE(); - case 274: + case 268: ACCEPT_TOKEN(aux_sym_jsx_text_token2); - if (lookahead == ' ') ADVANCE(274); + if (lookahead == ' ') ADVANCE(268); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(275); + lookahead == '}') ADVANCE(269); if (lookahead != 0 && - lookahead != '\n') ADVANCE(273); + lookahead != '\n') ADVANCE(267); END_STATE(); - case 275: + case 269: ACCEPT_TOKEN(aux_sym_jsx_text_token2); if (lookahead != 0 && - lookahead != '\n') ADVANCE(275); + lookahead != '\n') ADVANCE(269); END_STATE(); - case 276: + case 270: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(49); END_STATE(); - case 277: + case 271: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(49); - if (lookahead == '/') ADVANCE(290); + if (lookahead == '/') ADVANCE(284); END_STATE(); - case 278: + case 272: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(49); - if (lookahead == '/') ADVANCE(290); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(344); - if (lookahead == 't') ADVANCE(80); + if (lookahead == '/') ADVANCE(284); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(338); + if (lookahead == 't') ADVANCE(76); END_STATE(); - case 279: + case 273: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(49); - if (lookahead == '<') ADVANCE(327); - if (lookahead == '=') ADVANCE(344); + if (lookahead == '<') ADVANCE(321); + if (lookahead == '=') ADVANCE(338); END_STATE(); - case 280: + case 274: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(49); - if (lookahead == '<') ADVANCE(326); - if (lookahead == '=') ADVANCE(344); + if (lookahead == '<') ADVANCE(320); + if (lookahead == '=') ADVANCE(338); END_STATE(); - case 281: + case 275: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(49); - if (lookahead == '<') ADVANCE(326); - if (lookahead == '=') ADVANCE(344); - if (lookahead == 't') ADVANCE(80); + if (lookahead == '<') ADVANCE(320); + if (lookahead == '=') ADVANCE(338); + if (lookahead == 't') ADVANCE(76); END_STATE(); - case 282: + case 276: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '!') ADVANCE(49); - if (lookahead == 't') ADVANCE(80); + if (lookahead == 't') ADVANCE(76); END_STATE(); - case 283: + case 277: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 284: + case 278: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(349); - if (lookahead == '>') ADVANCE(322); + if (lookahead == '=') ADVANCE(343); + if (lookahead == '>') ADVANCE(316); END_STATE(); - case 285: + case 279: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(349); - if (lookahead == '>') ADVANCE(323); + if (lookahead == '=') ADVANCE(343); + if (lookahead == '>') ADVANCE(317); END_STATE(); - case 286: + case 280: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(286); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); END_STATE(); - case 287: + case 281: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 288: + case 282: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(430); + if (lookahead == '.') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 289: + case 283: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(430); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 290: + case 284: ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); - case 291: + case 285: ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); - case 292: + case 286: ACCEPT_TOKEN(anon_sym_class); END_STATE(); - case 293: + case 287: ACCEPT_TOKEN(anon_sym_class); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 294: + case 288: ACCEPT_TOKEN(anon_sym_extends); END_STATE(); - case 295: + case 289: ACCEPT_TOKEN(anon_sym_extends); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 296: + case 290: ACCEPT_TOKEN(anon_sym_async); END_STATE(); - case 297: + case 291: ACCEPT_TOKEN(anon_sym_async); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 298: + case 292: ACCEPT_TOKEN(anon_sym_function); END_STATE(); - case 299: + case 293: ACCEPT_TOKEN(anon_sym_function); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 300: + case 294: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 301: + case 295: ACCEPT_TOKEN(sym_optional_chain); END_STATE(); - case 302: + case 296: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 303: + case 297: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 304: + case 298: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 305: + case 299: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 306: + case 300: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 307: + case 301: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 308: + case 302: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 309: + case 303: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 310: + case 304: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 311: + case 305: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 312: + case 306: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 313: + case 307: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 314: + case 308: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 315: + case 309: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 316: + case 310: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 317: + case 311: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 318: + case 312: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 319: + case 313: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(314); + if (lookahead == '=') ADVANCE(308); END_STATE(); - case 320: + case 314: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 321: + case 315: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(315); + if (lookahead == '=') ADVANCE(309); END_STATE(); - case 322: + case 316: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(310); - if (lookahead == '>') ADVANCE(325); + if (lookahead == '=') ADVANCE(304); + if (lookahead == '>') ADVANCE(319); END_STATE(); - case 323: + case 317: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(324); + if (lookahead == '>') ADVANCE(318); END_STATE(); - case 324: + case 318: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 325: + case 319: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(311); + if (lookahead == '=') ADVANCE(305); END_STATE(); - case 326: + case 320: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 327: + case 321: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(312); + if (lookahead == '=') ADVANCE(306); END_STATE(); - case 328: + case 322: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(319); - if (lookahead == '=') ADVANCE(308); + if (lookahead == '&') ADVANCE(313); + if (lookahead == '=') ADVANCE(302); END_STATE(); - case 329: + case 323: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(318); + if (lookahead == '&') ADVANCE(312); END_STATE(); - case 330: + case 324: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 331: + case 325: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(307); + if (lookahead == '=') ADVANCE(301); END_STATE(); - case 332: + case 326: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '|') ADVANCE(321); + if (lookahead == '=') ADVANCE(303); + if (lookahead == '|') ADVANCE(315); END_STATE(); - case 333: + case 327: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(320); + if (lookahead == '|') ADVANCE(314); END_STATE(); - case 334: + case 328: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(358); + if (lookahead == '+') ADVANCE(352); END_STATE(); - case 335: + case 329: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(358); - if (lookahead == '=') ADVANCE(302); + if (lookahead == '+') ADVANCE(352); + if (lookahead == '=') ADVANCE(296); END_STATE(); - case 336: + case 330: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(359); + if (lookahead == '-') ADVANCE(353); END_STATE(); - case 337: + case 331: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(359); - if (lookahead == '=') ADVANCE(303); + if (lookahead == '-') ADVANCE(353); + if (lookahead == '=') ADVANCE(297); END_STATE(); - case 338: + case 332: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '/') ADVANCE(391); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '/') ADVANCE(373); END_STATE(); - case 339: + case 333: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '=') ADVANCE(305); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '/') ADVANCE(373); + if (lookahead == '=') ADVANCE(299); END_STATE(); - case 340: + case 334: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 341: + case 335: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(306); + if (lookahead == '=') ADVANCE(300); END_STATE(); - case 342: + case 336: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 343: + case 337: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(313); + if (lookahead == '=') ADVANCE(307); END_STATE(); - case 344: + case 338: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 345: + case 339: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(346); + if (lookahead == '=') ADVANCE(340); END_STATE(); - case 346: + case 340: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 347: + case 341: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(348); + if (lookahead == '=') ADVANCE(342); END_STATE(); - case 348: + case 342: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 349: + case 343: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 350: + case 344: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 351: + case 345: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(316); + if (lookahead == '=') ADVANCE(310); END_STATE(); - case 352: + case 346: ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); - case 353: + case 347: ACCEPT_TOKEN(anon_sym_instanceof); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 354: + case 348: ACCEPT_TOKEN(anon_sym_instanceof); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 355: + case 349: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 356: + case 350: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(347); + if (lookahead == '=') ADVANCE(341); END_STATE(); - case 357: + case 351: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 358: + case 352: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 359: + case 353: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '>') ADVANCE(391); END_STATE(); - case 360: + case 354: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 361: + case 355: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 362: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '\n') ADVANCE(372); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(362); - END_STATE(); - case 363: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '!') ADVANCE(370); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(372); - END_STATE(); - case 364: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(366); - if (lookahead == '/') ADVANCE(362); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(372); - END_STATE(); - case 365: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(365); - if (lookahead == '/') ADVANCE(372); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(366); - END_STATE(); - case 366: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(365); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(366); - END_STATE(); - case 367: + case 356: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(368); - if (lookahead == '/') ADVANCE(364); - if (lookahead == '<') ADVANCE(363); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(367); + if (lookahead == '\n') ADVANCE(361); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(372); + lookahead != '\\') ADVANCE(356); END_STATE(); - case 368: + case 357: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(371); + if (lookahead == '*') ADVANCE(359); + if (lookahead == '/') ADVANCE(356); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(372); + lookahead != '\\') ADVANCE(361); END_STATE(); - case 369: + case 358: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(362); + if (lookahead == '*') ADVANCE(358); + if (lookahead == '/') ADVANCE(361); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(372); + lookahead != '\\') ADVANCE(359); END_STATE(); - case 370: + case 359: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '-') ADVANCE(369); + if (lookahead == '*') ADVANCE(358); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(372); + lookahead != '\\') ADVANCE(359); END_STATE(); - case 371: + case 360: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '>') ADVANCE(362); + if (lookahead == '/') ADVANCE(357); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(360); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(372); + lookahead != '\\') ADVANCE(361); END_STATE(); - case 372: + case 361: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(372); - END_STATE(); - case 373: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '\n') ADVANCE(383); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(373); - END_STATE(); - case 374: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '!') ADVANCE(381); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(383); - END_STATE(); - case 375: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(377); - if (lookahead == '/') ADVANCE(373); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(383); - END_STATE(); - case 376: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(376); - if (lookahead == '/') ADVANCE(383); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(377); - END_STATE(); - case 377: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(376); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(377); + lookahead != '\\') ADVANCE(361); END_STATE(); - case 378: + case 362: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(379); - if (lookahead == '/') ADVANCE(375); - if (lookahead == '<') ADVANCE(374); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(378); + if (lookahead == '\n') ADVANCE(367); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(383); + lookahead != '\\') ADVANCE(362); END_STATE(); - case 379: + case 363: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(382); + if (lookahead == '*') ADVANCE(365); + if (lookahead == '/') ADVANCE(362); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(383); + lookahead != '\\') ADVANCE(367); END_STATE(); - case 380: + case 364: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(373); + if (lookahead == '*') ADVANCE(364); + if (lookahead == '/') ADVANCE(367); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(383); + lookahead != '\\') ADVANCE(365); END_STATE(); - case 381: + case 365: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '-') ADVANCE(380); + if (lookahead == '*') ADVANCE(364); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(383); + lookahead != '\\') ADVANCE(365); END_STATE(); - case 382: + case 366: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '>') ADVANCE(373); + if (lookahead == '/') ADVANCE(363); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(366); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(383); + lookahead != '\\') ADVANCE(367); END_STATE(); - case 383: + case 367: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(383); + lookahead != '\\') ADVANCE(367); END_STATE(); - case 384: + case 368: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 385: + case 369: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 386: + case 370: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(384); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(368); END_STATE(); - case 387: + case 371: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(386); - END_STATE(); - case 388: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 389: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(391); - if (lookahead == '[') ADVANCE(390); - if (lookahead == '\\') ADVANCE(392); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(389); - END_STATE(); - case 390: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(393); - if (lookahead == ']') ADVANCE(389); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(390); - END_STATE(); - case 391: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(391); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(370); END_STATE(); - case 392: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(389); + case 372: + ACCEPT_TOKEN(aux_sym_comment_token1); END_STATE(); - case 393: - ACCEPT_TOKEN(sym_comment); + case 373: + ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(390); + lookahead != '\n') ADVANCE(373); END_STATE(); - case 394: + case 374: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 395: + case 375: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 396: + case 376: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '/') ADVANCE(391); + if (lookahead == '*') ADVANCE(45); + if (lookahead == '/') ADVANCE(373); END_STATE(); - case 397: + case 377: ACCEPT_TOKEN(sym_regex_pattern); if (lookahead == '\n') SKIP(53) - if (lookahead == '-') ADVANCE(399); - if (lookahead == '/') ADVANCE(43); - if (lookahead == '<') ADVANCE(398); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(397); - if (lookahead != 0) ADVANCE(403); - END_STATE(); - case 398: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '!') ADVANCE(401); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(403); - END_STATE(); - case 399: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(403); - END_STATE(); - case 400: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '-') ADVANCE(389); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(403); - END_STATE(); - case 401: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '-') ADVANCE(400); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(403); - END_STATE(); - case 402: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '>') ADVANCE(389); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(403); + 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); END_STATE(); - case 403: + case 378: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(64); - if (lookahead == '\\') ADVANCE(196); + if (lookahead == '[') ADVANCE(60); + if (lookahead == '\\') ADVANCE(193); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(403); + lookahead != '/') ADVANCE(378); END_STATE(); - case 404: + case 379: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'a') ADVANCE(410); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'a') ADVANCE(385); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 405: + case 380: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'c') ADVANCE(406); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'c') ADVANCE(381); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 406: + case 381: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'e') ADVANCE(411); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'e') ADVANCE(386); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 407: + case 382: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(354); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'f') ADVANCE(348); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 408: + case 383: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'f') ADVANCE(242); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'f') ADVANCE(239); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 409: + case 384: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(238); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'n') ADVANCE(235); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 410: + case 385: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'n') ADVANCE(405); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'n') ADVANCE(380); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 411: + case 386: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 'o') ADVANCE(407); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 'o') ADVANCE(382); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 412: + case 387: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == 't') ADVANCE(404); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (lookahead == 't') ADVANCE(379); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 413: + case 388: ACCEPT_TOKEN(sym_regex_flags); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(413); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(388); END_STATE(); - case 414: + case 389: ACCEPT_TOKEN(sym_number); END_STATE(); - case 415: + case 390: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(431); - if (lookahead == '0') ADVANCE(428); + if (lookahead == '.') ADVANCE(406); + if (lookahead == '0') ADVANCE(403); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(172); + lookahead == 'b') ADVANCE(169); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(171); + lookahead == 'e') ADVANCE(168); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(173); + lookahead == 'o') ADVANCE(170); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(181); - if (lookahead == '_') ADVANCE(176); - if (lookahead == 'n') ADVANCE(414); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 'x') ADVANCE(178); + if (lookahead == '_') ADVANCE(173); + if (lookahead == 'n') ADVANCE(389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); END_STATE(); - case 416: + case 391: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(431); - if (lookahead == '0') ADVANCE(422); + if (lookahead == '.') ADVANCE(406); + if (lookahead == '0') ADVANCE(397); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(556); + lookahead == 'b') ADVANCE(532); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(566); + lookahead == 'e') ADVANCE(542); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(560); + lookahead == 'o') ADVANCE(536); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(564); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '_') ADVANCE(562); - if (lookahead == 'n') ADVANCE(424); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(565); + 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); END_STATE(); - case 417: + case 392: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(431); + if (lookahead == '.') ADVANCE(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(171); - if (lookahead == '_') ADVANCE(174); - if (lookahead == 'n') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 'e') ADVANCE(168); + if (lookahead == '_') ADVANCE(171); + if (lookahead == 'n') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); END_STATE(); - case 418: + case 393: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(431); + if (lookahead == '.') ADVANCE(406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(566); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '_') ADVANCE(561); - if (lookahead == 'n') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(565); + 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); END_STATE(); - case 419: + case 394: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '_') ADVANCE(556); - if (lookahead == 'n') ADVANCE(424); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '_') ADVANCE(532); + if (lookahead == 'n') ADVANCE(399); if (lookahead == '0' || - lookahead == '1') ADVANCE(419); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(565); + lookahead == '1') ADVANCE(394); + if (!sym_identifier_character_set_3(lookahead)) ADVANCE(541); END_STATE(); - case 420: + case 395: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '_') ADVANCE(560); - if (lookahead == 'n') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(420); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(565); + 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); END_STATE(); - case 421: + case 396: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '_') ADVANCE(564); - if (lookahead == 'n') ADVANCE(424); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '_') ADVANCE(540); + if (lookahead == 'n') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(421); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(565); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(541); END_STATE(); - case 422: + case 397: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '_') ADVANCE(562); - if (lookahead == 'n') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(422); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(565); + 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); END_STATE(); - case 423: + case 398: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '_') ADVANCE(563); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(423); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '_') ADVANCE(539); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(541); END_STATE(); - case 424: + case 399: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 425: + case 400: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(172); - if (lookahead == 'n') ADVANCE(414); + if (lookahead == '_') ADVANCE(169); + if (lookahead == 'n') ADVANCE(389); if (lookahead == '0' || - lookahead == '1') ADVANCE(425); + lookahead == '1') ADVANCE(400); END_STATE(); - case 426: + case 401: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(173); - if (lookahead == 'n') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(426); + if (lookahead == '_') ADVANCE(170); + if (lookahead == 'n') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(401); END_STATE(); - case 427: + case 402: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(181); - if (lookahead == 'n') ADVANCE(414); + if (lookahead == '_') ADVANCE(178); + if (lookahead == 'n') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(427); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(402); END_STATE(); - case 428: + case 403: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(176); - if (lookahead == 'n') ADVANCE(414); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(428); + if (lookahead == '_') ADVANCE(173); + if (lookahead == 'n') ADVANCE(389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(403); END_STATE(); - case 429: + case 404: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(429); + if (lookahead == '_') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(404); END_STATE(); - case 430: + case 405: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(171); - if (lookahead == '_') ADVANCE(175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(430); + lookahead == 'e') ADVANCE(168); + if (lookahead == '_') ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 431: + case 406: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(430); + lookahead == 'e') ADVANCE(168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(405); END_STATE(); - case 432: + case 407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '$') ADVANCE(555); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(527); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(501); - if (lookahead == 'f') ADVANCE(496); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'o') ADVANCE(488); - if (lookahead == 's') ADVANCE(545); - if (lookahead == 't') ADVANCE(461); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(432); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_identifier_character_set_4(lookahead)) ADVANCE(541); END_STATE(); - case 433: + case 408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(286); - if (lookahead == '\\') ADVANCE(158); + if (lookahead == '-') ADVANCE(280); + if (lookahead == '\\') ADVANCE(155); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(433); - if (!sym_identifier_character_set_5(lookahead)) ADVANCE(565); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); + if (!sym_identifier_character_set_5(lookahead)) ADVANCE(541); END_STATE(); - case 434: + case 409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(434); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(409); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 435: + case 410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(435); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(410); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 436: + case 411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(436); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(411); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 437: + case 412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(437); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 438: + case 413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 's') ADVANCE(545); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(438); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 439: + case 414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(439); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(414); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 440: + case 415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); + 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 == 8232 || - lookahead == 8233) ADVANCE(440); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(415); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 441: + case 416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(441); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 442: + case 417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(442); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(417); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 443: + case 418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(504); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(443); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(418); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 444: + case 419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(444); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(419); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 445: + case 420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(445); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(420); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 446: + case 421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(446); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(421); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 447: + case 422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(447); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 448: + case 423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(448); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 449: + case 424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(449); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(424); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 450: + case 425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(471); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(450); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(425); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 451: + case 426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(471); - if (lookahead == 'e') ADVANCE(502); - if (lookahead == 'f') ADVANCE(497); - if (lookahead == 'l') ADVANCE(483); - if (lookahead == 'v') ADVANCE(464); - if (lookahead == 'w') ADVANCE(492); + 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 == 8232 || - lookahead == 8233) ADVANCE(451); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 452: + case 427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'o') ADVANCE(488); + 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 == 8232 || - lookahead == 8233) ADVANCE(452); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(427); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 453: + case 428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); + 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 == 8232 || - lookahead == 8233) ADVANCE(453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(428); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 454: + case 429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(530); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); + 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 == 8232 || - lookahead == 8233) ADVANCE(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(429); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 455: + case 430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 's') ADVANCE(545); + 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 == 8232 || - lookahead == 8233) ADVANCE(455); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(430); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 456: + case 431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); + 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 == 8232 || - lookahead == 8233) ADVANCE(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 457: + case 432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'i') ADVANCE(510); + 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 == 8232 || - lookahead == 8233) ADVANCE(457); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(432); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 458: + case 433: + 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 == 8232 || + lookahead == 8233) ADVANCE(433); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 434: + 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 == 8232 || + lookahead == 8233) ADVANCE(434); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 435: + 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); + END_STATE(); + case 436: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(500); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 437: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(525); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 438: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(511); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 439: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(501); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 440: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(476); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 441: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(482); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(520); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 's') ADVANCE(545); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'a') ADVANCE(491); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 444: + 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 == 8232 || + lookahead == 8233) ADVANCE(444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 445: + 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 == 8232 || - lookahead == 8233) ADVANCE(458); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + lookahead == 8233) ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 446: + 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); + END_STATE(); + case 447: + 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); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'c') ADVANCE(535); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'c') ADVANCE(291); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'c') ADVANCE(468); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'c') ADVANCE(460); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'c') ADVANCE(522); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'd') ADVANCE(505); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(245); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(228); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 456: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(241); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 457: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(465); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); + END_STATE(); + case 458: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(514); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(416); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(528); if (lookahead == 8232 || lookahead == 8233) ADVANCE(459); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(532); - if (lookahead == 'l') ADVANCE(463); - if (lookahead == 'o') ADVANCE(514); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(495); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(524); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(487); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(549); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'e') ADVANCE(518); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(535); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'f') ADVANCE(238); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(525); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'f') ADVANCE(347); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(500); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'f') ADVANCE(437); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(506); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'g') ADVANCE(462); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(544); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'h') ADVANCE(471); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(515); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'h') ADVANCE(247); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 'o') ADVANCE(488); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'o') ADVANCE(463); if (lookahead == 8232 || lookahead == 8233) ADVANCE(469); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(531); - if (lookahead == 'e') ADVANCE(551); - if (lookahead == 'f') ADVANCE(550); - if (lookahead == 'i') ADVANCE(510); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'i') ADVANCE(486); if (lookahead == 8232 || lookahead == 8233) ADVANCE(470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(537); - if (lookahead == 'l') ADVANCE(463); - if (lookahead == 'o') ADVANCE(514); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'i') ADVANCE(483); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'a') ADVANCE(533); - if (lookahead == 'l') ADVANCE(463); - if (lookahead == 'o') ADVANCE(514); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + 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); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'c') ADVANCE(559); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'i') ADVANCE(493); + if (lookahead == 'u') ADVANCE(489); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'c') ADVANCE(297); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'i') ADVANCE(497); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'c') ADVANCE(493); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'i') ADVANCE(448); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'c') ADVANCE(485); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'i') ADVANCE(515); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'c') ADVANCE(546); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(510); + if (lookahead == 'x') ADVANCE(498); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'd') ADVANCE(529); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(510); + if (lookahead == 'x') ADVANCE(499); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(248); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(529); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(231); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(438); + if (lookahead == 'o') ADVANCE(490); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(244); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(438); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(490); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(479); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(538); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(456); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(552); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'l') ADVANCE(519); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(519); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'm') ADVANCE(220); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(511); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(234); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'e') ADVANCE(542); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(453); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'f') ADVANCE(241); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(293); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'f') ADVANCE(353); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(452); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'f') ADVANCE(462); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(512); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'g') ADVANCE(487); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(451); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'h') ADVANCE(495); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(449); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'h') ADVANCE(250); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'n') ADVANCE(441); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'i') ADVANCE(510); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(494); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'o') ADVANCE(485); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'i') ADVANCE(507); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'o') ADVANCE(464); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'i') ADVANCE(517); - if (lookahead == 'r') ADVANCE(518); - if (lookahead == 'u') ADVANCE(513); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'o') ADVANCE(502); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'i') ADVANCE(517); - if (lookahead == 'u') ADVANCE(513); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'o') ADVANCE(488); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'i') ADVANCE(521); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'p') ADVANCE(496); + if (lookahead == 't') ADVANCE(461); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'i') ADVANCE(473); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'p') ADVANCE(496); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'i') ADVANCE(539); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'r') ADVANCE(466); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(534); - if (lookahead == 'x') ADVANCE(522); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'r') ADVANCE(222); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(534); - if (lookahead == 'x') ADVANCE(523); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'r') ADVANCE(517); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(553); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(215); + if (lookahead == 'w') ADVANCE(440); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(463); - if (lookahead == 'o') ADVANCE(514); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(287); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(463); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(289); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(503); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(530); + if (lookahead == 'w') ADVANCE(440); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(481); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(530); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'l') ADVANCE(543); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(454); + if (lookahead == 't') ADVANCE(450); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'm') ADVANCE(223); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(454); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(237); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(455); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(478); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(504); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 's') ADVANCE(516); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(477); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(450); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(536); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(224); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(476); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(232); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(474); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(226); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'n') ADVANCE(466); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(208); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'o') ADVANCE(509); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(545); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'o') ADVANCE(489); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(213); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'o') ADVANCE(526); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(475); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'o') ADVANCE(512); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(442); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'p') ADVANCE(520); - if (lookahead == 't') ADVANCE(486); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(474); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'p') ADVANCE(520); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(461); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'r') ADVANCE(491); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 't') ADVANCE(443); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'r') ADVANCE(225); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'u') ADVANCE(484); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'r') ADVANCE(541); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'u') ADVANCE(489); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(218); - if (lookahead == 'w') ADVANCE(465); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'x') ADVANCE(499); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(293); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'x') ADVANCE(523); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(295); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'y') ADVANCE(249); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(554); - if (lookahead == 'w') ADVANCE(465); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 'y') ADVANCE(492); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(554); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '{') ADVANCE(375); + if (!sym_identifier_character_set_6(lookahead)) ADVANCE(541); END_STATE(); case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(479); - if (lookahead == 't') ADVANCE(475); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == '0' || + lookahead == '1') ADVANCE(394); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(479); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + 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); END_STATE(); case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(480); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(534); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(541); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); + if (!sym_identifier_character_set_5(lookahead)) ADVANCE(541); END_STATE(); case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(528); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(92); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 's') ADVANCE(540); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(395); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(475); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(227); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(397); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(235); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); case 540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(229); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 541: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(211); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 542: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(569); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 543: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(216); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 544: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(499); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 545: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(467); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 546: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(498); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 547: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(486); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 548: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 't') ADVANCE(468); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 549: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'u') ADVANCE(508); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 550: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'u') ADVANCE(513); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 551: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'x') ADVANCE(523); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 552: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'x') ADVANCE(547); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 553: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'y') ADVANCE(252); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 554: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 'y') ADVANCE(516); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 555: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '{') ADVANCE(395); - if (!sym_identifier_character_set_6(lookahead)) ADVANCE(565); - END_STATE(); - case 556: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '0' || - lookahead == '1') ADVANCE(419); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 557: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(557); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(433); - if (!sym_identifier_character_set_5(lookahead)) ADVANCE(565); - END_STATE(); - case 558: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(558); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(565); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 559: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(96); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 560: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(420); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 561: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(418); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 562: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(422); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 563: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(423); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); - END_STATE(); - case 564: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); + if (lookahead == '\\') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(421); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 565: + case 541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 566: + case 542: ACCEPT_TOKEN(sym_identifier); if (lookahead == '+' || - lookahead == '-') ADVANCE(177); - if (lookahead == '\\') ADVANCE(158); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(423); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(565); + 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); END_STATE(); - case 567: + case 543: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(157); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(567); + if (lookahead == '\\') ADVANCE(154); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(543); END_STATE(); - case 568: + case 544: ACCEPT_TOKEN(anon_sym_target); END_STATE(); - case 569: + case 545: ACCEPT_TOKEN(anon_sym_target); - if (lookahead == '\\') ADVANCE(158); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(565); + if (lookahead == '\\') ADVANCE(155); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(541); END_STATE(); - case 570: + case 546: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 571: + case 547: ACCEPT_TOKEN(aux_sym_method_definition_token1); - if (lookahead == '\n') ADVANCE(571); + if (lookahead == '\n') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); END_STATE(); @@ -9990,6 +9893,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: if (lookahead == 'b') ADVANCE(1); @@ -10368,2823 +10272,2826 @@ 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 = 200}, - [2] = {.lex_state = 15}, - [3] = {.lex_state = 15}, - [4] = {.lex_state = 15}, - [5] = {.lex_state = 15}, - [6] = {.lex_state = 15}, - [7] = {.lex_state = 15}, - [8] = {.lex_state = 15}, - [9] = {.lex_state = 15}, - [10] = {.lex_state = 21}, - [11] = {.lex_state = 21}, - [12] = {.lex_state = 21}, - [13] = {.lex_state = 21}, - [14] = {.lex_state = 21}, - [15] = {.lex_state = 200}, - [16] = {.lex_state = 200}, - [17] = {.lex_state = 200}, - [18] = {.lex_state = 200}, - [19] = {.lex_state = 200}, - [20] = {.lex_state = 200}, - [21] = {.lex_state = 200}, - [22] = {.lex_state = 200}, - [23] = {.lex_state = 200}, - [24] = {.lex_state = 200}, - [25] = {.lex_state = 200}, - [26] = {.lex_state = 200}, - [27] = {.lex_state = 200}, - [28] = {.lex_state = 200}, - [29] = {.lex_state = 200}, - [30] = {.lex_state = 200}, - [31] = {.lex_state = 200}, - [32] = {.lex_state = 200}, - [33] = {.lex_state = 200}, - [34] = {.lex_state = 200}, - [35] = {.lex_state = 200}, - [36] = {.lex_state = 200}, - [37] = {.lex_state = 200}, - [38] = {.lex_state = 200}, - [39] = {.lex_state = 200}, - [40] = {.lex_state = 200}, - [41] = {.lex_state = 200}, - [42] = {.lex_state = 200}, - [43] = {.lex_state = 200}, - [44] = {.lex_state = 200}, - [45] = {.lex_state = 200}, - [46] = {.lex_state = 200}, - [47] = {.lex_state = 200}, - [48] = {.lex_state = 200}, - [49] = {.lex_state = 200}, - [50] = {.lex_state = 200}, - [51] = {.lex_state = 200}, - [52] = {.lex_state = 200}, - [53] = {.lex_state = 200}, - [54] = {.lex_state = 200}, - [55] = {.lex_state = 200}, - [56] = {.lex_state = 200}, - [57] = {.lex_state = 200}, - [58] = {.lex_state = 200}, - [59] = {.lex_state = 200}, - [60] = {.lex_state = 200}, - [61] = {.lex_state = 200}, - [62] = {.lex_state = 200}, - [63] = {.lex_state = 200}, - [64] = {.lex_state = 200}, - [65] = {.lex_state = 200}, - [66] = {.lex_state = 200}, - [67] = {.lex_state = 200}, - [68] = {.lex_state = 200}, - [69] = {.lex_state = 200}, - [70] = {.lex_state = 200}, - [71] = {.lex_state = 200}, - [72] = {.lex_state = 200}, - [73] = {.lex_state = 200}, - [74] = {.lex_state = 200}, - [75] = {.lex_state = 200}, - [76] = {.lex_state = 200}, - [77] = {.lex_state = 200}, - [78] = {.lex_state = 200}, - [79] = {.lex_state = 200}, - [80] = {.lex_state = 200}, - [81] = {.lex_state = 200}, - [82] = {.lex_state = 200}, - [83] = {.lex_state = 200}, - [84] = {.lex_state = 200}, - [85] = {.lex_state = 200}, - [86] = {.lex_state = 200}, - [87] = {.lex_state = 200}, - [88] = {.lex_state = 200}, - [89] = {.lex_state = 200}, - [90] = {.lex_state = 200}, - [91] = {.lex_state = 200}, - [92] = {.lex_state = 200}, - [93] = {.lex_state = 200}, - [94] = {.lex_state = 200}, - [95] = {.lex_state = 200}, - [96] = {.lex_state = 200}, - [97] = {.lex_state = 200}, - [98] = {.lex_state = 200}, - [99] = {.lex_state = 200}, - [100] = {.lex_state = 200}, - [101] = {.lex_state = 200}, - [102] = {.lex_state = 200}, - [103] = {.lex_state = 200}, - [104] = {.lex_state = 200}, - [105] = {.lex_state = 200}, - [106] = {.lex_state = 200}, - [107] = {.lex_state = 200}, - [108] = {.lex_state = 200}, - [109] = {.lex_state = 200}, - [110] = {.lex_state = 200}, - [111] = {.lex_state = 200}, - [112] = {.lex_state = 200}, - [113] = {.lex_state = 200}, - [114] = {.lex_state = 200}, - [115] = {.lex_state = 200}, - [116] = {.lex_state = 200}, - [117] = {.lex_state = 200}, - [118] = {.lex_state = 200}, - [119] = {.lex_state = 7, .external_lex_state = 2}, - [120] = {.lex_state = 8, .external_lex_state = 3}, - [121] = {.lex_state = 7, .external_lex_state = 3}, - [122] = {.lex_state = 7, .external_lex_state = 2}, - [123] = {.lex_state = 8, .external_lex_state = 2}, - [124] = {.lex_state = 19}, - [125] = {.lex_state = 19}, - [126] = {.lex_state = 19}, - [127] = {.lex_state = 14}, - [128] = {.lex_state = 19}, - [129] = {.lex_state = 14}, - [130] = {.lex_state = 14}, - [131] = {.lex_state = 14}, - [132] = {.lex_state = 19}, - [133] = {.lex_state = 19}, - [134] = {.lex_state = 10, .external_lex_state = 3}, - [135] = {.lex_state = 14}, - [136] = {.lex_state = 19}, - [137] = {.lex_state = 19}, - [138] = {.lex_state = 14}, - [139] = {.lex_state = 19}, - [140] = {.lex_state = 14}, - [141] = {.lex_state = 19}, - [142] = {.lex_state = 19}, - [143] = {.lex_state = 19}, - [144] = {.lex_state = 19}, - [145] = {.lex_state = 19}, - [146] = {.lex_state = 19}, - [147] = {.lex_state = 14}, - [148] = {.lex_state = 199, .external_lex_state = 3}, - [149] = {.lex_state = 10, .external_lex_state = 3}, - [150] = {.lex_state = 10, .external_lex_state = 3}, - [151] = {.lex_state = 9, .external_lex_state = 3}, - [152] = {.lex_state = 10, .external_lex_state = 3}, - [153] = {.lex_state = 10, .external_lex_state = 3}, - [154] = {.lex_state = 10, .external_lex_state = 3}, - [155] = {.lex_state = 10, .external_lex_state = 3}, - [156] = {.lex_state = 10, .external_lex_state = 3}, - [157] = {.lex_state = 10, .external_lex_state = 3}, - [158] = {.lex_state = 10, .external_lex_state = 3}, - [159] = {.lex_state = 10, .external_lex_state = 3}, - [160] = {.lex_state = 10, .external_lex_state = 3}, - [161] = {.lex_state = 10, .external_lex_state = 3}, - [162] = {.lex_state = 10, .external_lex_state = 3}, - [163] = {.lex_state = 10, .external_lex_state = 3}, - [164] = {.lex_state = 9, .external_lex_state = 3}, - [165] = {.lex_state = 199, .external_lex_state = 3}, - [166] = {.lex_state = 14}, - [167] = {.lex_state = 199, .external_lex_state = 3}, - [168] = {.lex_state = 9, .external_lex_state = 3}, - [169] = {.lex_state = 199, .external_lex_state = 3}, - [170] = {.lex_state = 14}, - [171] = {.lex_state = 199, .external_lex_state = 3}, - [172] = {.lex_state = 199, .external_lex_state = 3}, - [173] = {.lex_state = 9, .external_lex_state = 3}, - [174] = {.lex_state = 198, .external_lex_state = 3}, - [175] = {.lex_state = 199, .external_lex_state = 3}, - [176] = {.lex_state = 199, .external_lex_state = 3}, - [177] = {.lex_state = 199, .external_lex_state = 3}, - [178] = {.lex_state = 14}, - [179] = {.lex_state = 199, .external_lex_state = 3}, - [180] = {.lex_state = 9, .external_lex_state = 3}, - [181] = {.lex_state = 199, .external_lex_state = 3}, - [182] = {.lex_state = 9, .external_lex_state = 3}, - [183] = {.lex_state = 9, .external_lex_state = 3}, - [184] = {.lex_state = 199, .external_lex_state = 3}, - [185] = {.lex_state = 9, .external_lex_state = 3}, - [186] = {.lex_state = 9, .external_lex_state = 3}, - [187] = {.lex_state = 9, .external_lex_state = 3}, - [188] = {.lex_state = 14}, - [189] = {.lex_state = 9, .external_lex_state = 3}, - [190] = {.lex_state = 199, .external_lex_state = 3}, - [191] = {.lex_state = 199, .external_lex_state = 3}, - [192] = {.lex_state = 9, .external_lex_state = 3}, - [193] = {.lex_state = 199, .external_lex_state = 3}, - [194] = {.lex_state = 9, .external_lex_state = 3}, - [195] = {.lex_state = 9, .external_lex_state = 3}, - [196] = {.lex_state = 9, .external_lex_state = 3}, - [197] = {.lex_state = 198, .external_lex_state = 3}, - [198] = {.lex_state = 14}, - [199] = {.lex_state = 14}, - [200] = {.lex_state = 198, .external_lex_state = 3}, - [201] = {.lex_state = 198, .external_lex_state = 3}, - [202] = {.lex_state = 198, .external_lex_state = 3}, - [203] = {.lex_state = 198, .external_lex_state = 3}, - [204] = {.lex_state = 14}, - [205] = {.lex_state = 198, .external_lex_state = 3}, - [206] = {.lex_state = 198, .external_lex_state = 3}, - [207] = {.lex_state = 198, .external_lex_state = 3}, - [208] = {.lex_state = 198, .external_lex_state = 3}, - [209] = {.lex_state = 198, .external_lex_state = 3}, - [210] = {.lex_state = 198, .external_lex_state = 3}, - [211] = {.lex_state = 198, .external_lex_state = 3}, - [212] = {.lex_state = 198, .external_lex_state = 3}, - [213] = {.lex_state = 198, .external_lex_state = 3}, - [214] = {.lex_state = 14}, - [215] = {.lex_state = 14}, - [216] = {.lex_state = 14}, - [217] = {.lex_state = 14}, - [218] = {.lex_state = 14}, - [219] = {.lex_state = 14}, - [220] = {.lex_state = 14}, - [221] = {.lex_state = 14}, - [222] = {.lex_state = 14}, - [223] = {.lex_state = 14}, - [224] = {.lex_state = 14}, - [225] = {.lex_state = 14}, - [226] = {.lex_state = 14}, - [227] = {.lex_state = 14}, - [228] = {.lex_state = 14}, - [229] = {.lex_state = 14}, - [230] = {.lex_state = 14}, - [231] = {.lex_state = 14}, - [232] = {.lex_state = 14}, - [233] = {.lex_state = 19}, - [234] = {.lex_state = 14, .external_lex_state = 4}, - [235] = {.lex_state = 14, .external_lex_state = 4}, - [236] = {.lex_state = 14, .external_lex_state = 4}, - [237] = {.lex_state = 14, .external_lex_state = 4}, - [238] = {.lex_state = 14, .external_lex_state = 4}, - [239] = {.lex_state = 14}, - [240] = {.lex_state = 14}, - [241] = {.lex_state = 14}, - [242] = {.lex_state = 14}, - [243] = {.lex_state = 14}, - [244] = {.lex_state = 14}, - [245] = {.lex_state = 14}, - [246] = {.lex_state = 16}, - [247] = {.lex_state = 14}, - [248] = {.lex_state = 14}, - [249] = {.lex_state = 14}, - [250] = {.lex_state = 14}, - [251] = {.lex_state = 14}, - [252] = {.lex_state = 14}, - [253] = {.lex_state = 14}, - [254] = {.lex_state = 14}, - [255] = {.lex_state = 14}, - [256] = {.lex_state = 14}, - [257] = {.lex_state = 14}, - [258] = {.lex_state = 14}, - [259] = {.lex_state = 14}, - [260] = {.lex_state = 14}, - [261] = {.lex_state = 14}, - [262] = {.lex_state = 14}, - [263] = {.lex_state = 14}, - [264] = {.lex_state = 14}, - [265] = {.lex_state = 14}, - [266] = {.lex_state = 14}, - [267] = {.lex_state = 14}, - [268] = {.lex_state = 14}, - [269] = {.lex_state = 14}, - [270] = {.lex_state = 14}, - [271] = {.lex_state = 14}, - [272] = {.lex_state = 14}, - [273] = {.lex_state = 14}, - [274] = {.lex_state = 14}, - [275] = {.lex_state = 14}, - [276] = {.lex_state = 14}, - [277] = {.lex_state = 16}, - [278] = {.lex_state = 14}, - [279] = {.lex_state = 14}, - [280] = {.lex_state = 14}, - [281] = {.lex_state = 14}, - [282] = {.lex_state = 16}, - [283] = {.lex_state = 14}, - [284] = {.lex_state = 14}, - [285] = {.lex_state = 14}, - [286] = {.lex_state = 14}, - [287] = {.lex_state = 16}, - [288] = {.lex_state = 14}, - [289] = {.lex_state = 14}, - [290] = {.lex_state = 16}, - [291] = {.lex_state = 14}, - [292] = {.lex_state = 14}, - [293] = {.lex_state = 14}, - [294] = {.lex_state = 14}, - [295] = {.lex_state = 14}, - [296] = {.lex_state = 14}, - [297] = {.lex_state = 14}, - [298] = {.lex_state = 14}, - [299] = {.lex_state = 14}, - [300] = {.lex_state = 14}, - [301] = {.lex_state = 14}, - [302] = {.lex_state = 14}, - [303] = {.lex_state = 14}, - [304] = {.lex_state = 14}, - [305] = {.lex_state = 14}, - [306] = {.lex_state = 14}, - [307] = {.lex_state = 14}, - [308] = {.lex_state = 14}, - [309] = {.lex_state = 14}, - [310] = {.lex_state = 14}, - [311] = {.lex_state = 14}, - [312] = {.lex_state = 14}, - [313] = {.lex_state = 14}, - [314] = {.lex_state = 14}, - [315] = {.lex_state = 14}, - [316] = {.lex_state = 14}, - [317] = {.lex_state = 14}, - [318] = {.lex_state = 14}, - [319] = {.lex_state = 14}, - [320] = {.lex_state = 14}, - [321] = {.lex_state = 14}, - [322] = {.lex_state = 14}, - [323] = {.lex_state = 14}, - [324] = {.lex_state = 14}, - [325] = {.lex_state = 14}, - [326] = {.lex_state = 14}, - [327] = {.lex_state = 14}, - [328] = {.lex_state = 14}, - [329] = {.lex_state = 14}, - [330] = {.lex_state = 14}, - [331] = {.lex_state = 14}, - [332] = {.lex_state = 14}, - [333] = {.lex_state = 14}, - [334] = {.lex_state = 14}, - [335] = {.lex_state = 14}, - [336] = {.lex_state = 14}, - [337] = {.lex_state = 14}, - [338] = {.lex_state = 14}, - [339] = {.lex_state = 14}, - [340] = {.lex_state = 14}, - [341] = {.lex_state = 14}, - [342] = {.lex_state = 14}, - [343] = {.lex_state = 14}, - [344] = {.lex_state = 14}, - [345] = {.lex_state = 14}, - [346] = {.lex_state = 14}, - [347] = {.lex_state = 14}, - [348] = {.lex_state = 14}, - [349] = {.lex_state = 14}, - [350] = {.lex_state = 14}, - [351] = {.lex_state = 14}, - [352] = {.lex_state = 14}, - [353] = {.lex_state = 14}, - [354] = {.lex_state = 14}, - [355] = {.lex_state = 14}, - [356] = {.lex_state = 14}, - [357] = {.lex_state = 14}, - [358] = {.lex_state = 14}, - [359] = {.lex_state = 14}, - [360] = {.lex_state = 14}, - [361] = {.lex_state = 14}, - [362] = {.lex_state = 14}, - [363] = {.lex_state = 14}, - [364] = {.lex_state = 14}, - [365] = {.lex_state = 14}, - [366] = {.lex_state = 14}, - [367] = {.lex_state = 14}, - [368] = {.lex_state = 14}, - [369] = {.lex_state = 14}, - [370] = {.lex_state = 14}, - [371] = {.lex_state = 14}, - [372] = {.lex_state = 14}, - [373] = {.lex_state = 14}, - [374] = {.lex_state = 14}, - [375] = {.lex_state = 14}, - [376] = {.lex_state = 14}, - [377] = {.lex_state = 14}, - [378] = {.lex_state = 14}, - [379] = {.lex_state = 14}, - [380] = {.lex_state = 14}, - [381] = {.lex_state = 14}, - [382] = {.lex_state = 14}, - [383] = {.lex_state = 14}, - [384] = {.lex_state = 14}, - [385] = {.lex_state = 14}, - [386] = {.lex_state = 14}, - [387] = {.lex_state = 14}, - [388] = {.lex_state = 14}, - [389] = {.lex_state = 14}, - [390] = {.lex_state = 14}, - [391] = {.lex_state = 14}, - [392] = {.lex_state = 14}, - [393] = {.lex_state = 14}, - [394] = {.lex_state = 14}, - [395] = {.lex_state = 14}, - [396] = {.lex_state = 14}, - [397] = {.lex_state = 14}, - [398] = {.lex_state = 14}, - [399] = {.lex_state = 14}, - [400] = {.lex_state = 14}, - [401] = {.lex_state = 14}, - [402] = {.lex_state = 14}, - [403] = {.lex_state = 14}, - [404] = {.lex_state = 14}, - [405] = {.lex_state = 14}, - [406] = {.lex_state = 14}, - [407] = {.lex_state = 14}, - [408] = {.lex_state = 14}, - [409] = {.lex_state = 14}, - [410] = {.lex_state = 14}, - [411] = {.lex_state = 14}, - [412] = {.lex_state = 14}, - [413] = {.lex_state = 14}, - [414] = {.lex_state = 14}, - [415] = {.lex_state = 14}, - [416] = {.lex_state = 14}, - [417] = {.lex_state = 14}, - [418] = {.lex_state = 14}, - [419] = {.lex_state = 14}, - [420] = {.lex_state = 14}, - [421] = {.lex_state = 14}, - [422] = {.lex_state = 14}, - [423] = {.lex_state = 206, .external_lex_state = 3}, - [424] = {.lex_state = 206, .external_lex_state = 3}, - [425] = {.lex_state = 206, .external_lex_state = 3}, - [426] = {.lex_state = 206, .external_lex_state = 3}, - [427] = {.lex_state = 206, .external_lex_state = 3}, - [428] = {.lex_state = 206, .external_lex_state = 3}, - [429] = {.lex_state = 206, .external_lex_state = 3}, - [430] = {.lex_state = 206, .external_lex_state = 3}, - [431] = {.lex_state = 24, .external_lex_state = 3}, - [432] = {.lex_state = 24, .external_lex_state = 3}, - [433] = {.lex_state = 24, .external_lex_state = 3}, - [434] = {.lex_state = 25, .external_lex_state = 3}, - [435] = {.lex_state = 25, .external_lex_state = 3}, - [436] = {.lex_state = 25, .external_lex_state = 3}, - [437] = {.lex_state = 25, .external_lex_state = 3}, - [438] = {.lex_state = 25, .external_lex_state = 3}, - [439] = {.lex_state = 25, .external_lex_state = 3}, - [440] = {.lex_state = 18}, - [441] = {.lex_state = 27, .external_lex_state = 2}, - [442] = {.lex_state = 27, .external_lex_state = 2}, - [443] = {.lex_state = 28, .external_lex_state = 3}, - [444] = {.lex_state = 28, .external_lex_state = 3}, - [445] = {.lex_state = 18, .external_lex_state = 4}, - [446] = {.lex_state = 27, .external_lex_state = 3}, - [447] = {.lex_state = 28, .external_lex_state = 3}, - [448] = {.lex_state = 205}, - [449] = {.lex_state = 17}, - [450] = {.lex_state = 27, .external_lex_state = 3}, - [451] = {.lex_state = 27, .external_lex_state = 3}, - [452] = {.lex_state = 27, .external_lex_state = 2}, - [453] = {.lex_state = 27, .external_lex_state = 2}, - [454] = {.lex_state = 18, .external_lex_state = 4}, - [455] = {.lex_state = 27, .external_lex_state = 3}, - [456] = {.lex_state = 27, .external_lex_state = 3}, - [457] = {.lex_state = 27, .external_lex_state = 2}, - [458] = {.lex_state = 27, .external_lex_state = 3}, - [459] = {.lex_state = 27, .external_lex_state = 3}, - [460] = {.lex_state = 204}, - [461] = {.lex_state = 17, .external_lex_state = 4}, - [462] = {.lex_state = 22, .external_lex_state = 4}, - [463] = {.lex_state = 205, .external_lex_state = 4}, - [464] = {.lex_state = 18}, - [465] = {.lex_state = 27, .external_lex_state = 2}, - [466] = {.lex_state = 205, .external_lex_state = 4}, - [467] = {.lex_state = 22, .external_lex_state = 4}, - [468] = {.lex_state = 22}, - [469] = {.lex_state = 17, .external_lex_state = 4}, - [470] = {.lex_state = 18}, - [471] = {.lex_state = 22}, - [472] = {.lex_state = 23, .external_lex_state = 4}, - [473] = {.lex_state = 27, .external_lex_state = 2}, - [474] = {.lex_state = 23}, - [475] = {.lex_state = 27, .external_lex_state = 2}, - [476] = {.lex_state = 23, .external_lex_state = 4}, - [477] = {.lex_state = 27, .external_lex_state = 3}, - [478] = {.lex_state = 204, .external_lex_state = 4}, - [479] = {.lex_state = 23, .external_lex_state = 4}, - [480] = {.lex_state = 20}, - [481] = {.lex_state = 23, .external_lex_state = 4}, - [482] = {.lex_state = 23, .external_lex_state = 4}, - [483] = {.lex_state = 23, .external_lex_state = 4}, - [484] = {.lex_state = 204, .external_lex_state = 4}, - [485] = {.lex_state = 27, .external_lex_state = 3}, - [486] = {.lex_state = 27, .external_lex_state = 3}, - [487] = {.lex_state = 23}, - [488] = {.lex_state = 23, .external_lex_state = 4}, - [489] = {.lex_state = 23, .external_lex_state = 4}, - [490] = {.lex_state = 27, .external_lex_state = 3}, - [491] = {.lex_state = 23, .external_lex_state = 4}, - [492] = {.lex_state = 27, .external_lex_state = 3}, - [493] = {.lex_state = 23, .external_lex_state = 4}, - [494] = {.lex_state = 23, .external_lex_state = 4}, - [495] = {.lex_state = 22}, - [496] = {.lex_state = 205}, - [497] = {.lex_state = 23, .external_lex_state = 4}, - [498] = {.lex_state = 205}, - [499] = {.lex_state = 22}, - [500] = {.lex_state = 17}, - [501] = {.lex_state = 20, .external_lex_state = 4}, - [502] = {.lex_state = 22}, - [503] = {.lex_state = 23, .external_lex_state = 4}, - [504] = {.lex_state = 23, .external_lex_state = 4}, - [505] = {.lex_state = 17}, - [506] = {.lex_state = 23, .external_lex_state = 4}, - [507] = {.lex_state = 20, .external_lex_state = 4}, - [508] = {.lex_state = 23, .external_lex_state = 4}, - [509] = {.lex_state = 202, .external_lex_state = 4}, - [510] = {.lex_state = 202}, - [511] = {.lex_state = 202, .external_lex_state = 4}, - [512] = {.lex_state = 23}, - [513] = {.lex_state = 23}, - [514] = {.lex_state = 23}, - [515] = {.lex_state = 23}, - [516] = {.lex_state = 20}, - [517] = {.lex_state = 203}, - [518] = {.lex_state = 21, .external_lex_state = 4}, - [519] = {.lex_state = 21, .external_lex_state = 4}, - [520] = {.lex_state = 203, .external_lex_state = 4}, - [521] = {.lex_state = 21, .external_lex_state = 4}, - [522] = {.lex_state = 203, .external_lex_state = 4}, - [523] = {.lex_state = 204}, - [524] = {.lex_state = 203, .external_lex_state = 4}, - [525] = {.lex_state = 21, .external_lex_state = 4}, - [526] = {.lex_state = 21, .external_lex_state = 4}, - [527] = {.lex_state = 21, .external_lex_state = 4}, - [528] = {.lex_state = 203, .external_lex_state = 4}, - [529] = {.lex_state = 21, .external_lex_state = 4}, - [530] = {.lex_state = 21, .external_lex_state = 4}, - [531] = {.lex_state = 20}, - [532] = {.lex_state = 23}, - [533] = {.lex_state = 23}, - [534] = {.lex_state = 21, .external_lex_state = 4}, - [535] = {.lex_state = 201}, - [536] = {.lex_state = 23}, - [537] = {.lex_state = 202}, - [538] = {.lex_state = 21, .external_lex_state = 4}, - [539] = {.lex_state = 202}, - [540] = {.lex_state = 23}, - [541] = {.lex_state = 23}, - [542] = {.lex_state = 203, .external_lex_state = 4}, - [543] = {.lex_state = 23}, - [544] = {.lex_state = 23}, - [545] = {.lex_state = 23}, - [546] = {.lex_state = 23}, - [547] = {.lex_state = 21, .external_lex_state = 4}, - [548] = {.lex_state = 202}, - [549] = {.lex_state = 203, .external_lex_state = 4}, - [550] = {.lex_state = 21, .external_lex_state = 4}, - [551] = {.lex_state = 21, .external_lex_state = 4}, - [552] = {.lex_state = 23}, - [553] = {.lex_state = 202}, - [554] = {.lex_state = 23}, - [555] = {.lex_state = 23}, - [556] = {.lex_state = 23}, - [557] = {.lex_state = 23}, - [558] = {.lex_state = 203, .external_lex_state = 4}, - [559] = {.lex_state = 23}, - [560] = {.lex_state = 203, .external_lex_state = 4}, - [561] = {.lex_state = 23}, - [562] = {.lex_state = 201, .external_lex_state = 4}, - [563] = {.lex_state = 23}, - [564] = {.lex_state = 28, .external_lex_state = 2}, - [565] = {.lex_state = 23}, - [566] = {.lex_state = 23}, - [567] = {.lex_state = 23}, - [568] = {.lex_state = 21, .external_lex_state = 4}, - [569] = {.lex_state = 203, .external_lex_state = 4}, - [570] = {.lex_state = 23}, - [571] = {.lex_state = 23}, - [572] = {.lex_state = 23}, - [573] = {.lex_state = 23}, - [574] = {.lex_state = 23}, - [575] = {.lex_state = 23}, - [576] = {.lex_state = 23}, - [577] = {.lex_state = 23}, - [578] = {.lex_state = 23}, - [579] = {.lex_state = 203, .external_lex_state = 4}, - [580] = {.lex_state = 23}, - [581] = {.lex_state = 23}, - [582] = {.lex_state = 23}, - [583] = {.lex_state = 28, .external_lex_state = 2}, - [584] = {.lex_state = 23}, - [585] = {.lex_state = 23}, - [586] = {.lex_state = 203, .external_lex_state = 4}, - [587] = {.lex_state = 23}, - [588] = {.lex_state = 203, .external_lex_state = 4}, - [589] = {.lex_state = 23}, - [590] = {.lex_state = 23}, - [591] = {.lex_state = 23}, - [592] = {.lex_state = 28, .external_lex_state = 2}, - [593] = {.lex_state = 23}, - [594] = {.lex_state = 201, .external_lex_state = 4}, - [595] = {.lex_state = 23}, - [596] = {.lex_state = 23}, - [597] = {.lex_state = 23}, - [598] = {.lex_state = 23}, - [599] = {.lex_state = 23}, - [600] = {.lex_state = 23}, - [601] = {.lex_state = 203}, - [602] = {.lex_state = 23}, - [603] = {.lex_state = 23}, - [604] = {.lex_state = 23}, - [605] = {.lex_state = 23}, - [606] = {.lex_state = 23}, - [607] = {.lex_state = 23}, - [608] = {.lex_state = 23}, - [609] = {.lex_state = 23}, - [610] = {.lex_state = 23}, - [611] = {.lex_state = 203, .external_lex_state = 4}, - [612] = {.lex_state = 23}, - [613] = {.lex_state = 23}, - [614] = {.lex_state = 23}, - [615] = {.lex_state = 23}, - [616] = {.lex_state = 23}, - [617] = {.lex_state = 23}, - [618] = {.lex_state = 23}, - [619] = {.lex_state = 203, .external_lex_state = 4}, - [620] = {.lex_state = 23}, - [621] = {.lex_state = 23}, - [622] = {.lex_state = 21, .external_lex_state = 4}, - [623] = {.lex_state = 23}, - [624] = {.lex_state = 23}, - [625] = {.lex_state = 23}, - [626] = {.lex_state = 23}, - [627] = {.lex_state = 23}, - [628] = {.lex_state = 20}, - [629] = {.lex_state = 23}, - [630] = {.lex_state = 23}, - [631] = {.lex_state = 23}, - [632] = {.lex_state = 21, .external_lex_state = 4}, - [633] = {.lex_state = 23}, - [634] = {.lex_state = 23}, - [635] = {.lex_state = 23}, - [636] = {.lex_state = 23}, - [637] = {.lex_state = 23}, - [638] = {.lex_state = 23}, - [639] = {.lex_state = 23}, - [640] = {.lex_state = 20}, - [641] = {.lex_state = 23}, - [642] = {.lex_state = 23}, - [643] = {.lex_state = 204}, - [644] = {.lex_state = 23}, - [645] = {.lex_state = 23}, - [646] = {.lex_state = 203, .external_lex_state = 4}, - [647] = {.lex_state = 23}, - [648] = {.lex_state = 23}, - [649] = {.lex_state = 23}, - [650] = {.lex_state = 23}, - [651] = {.lex_state = 23}, - [652] = {.lex_state = 23}, - [653] = {.lex_state = 203, .external_lex_state = 4}, - [654] = {.lex_state = 23}, - [655] = {.lex_state = 23}, - [656] = {.lex_state = 23}, - [657] = {.lex_state = 23}, - [658] = {.lex_state = 23}, - [659] = {.lex_state = 21}, - [660] = {.lex_state = 21}, - [661] = {.lex_state = 21}, - [662] = {.lex_state = 203}, - [663] = {.lex_state = 21}, - [664] = {.lex_state = 21}, - [665] = {.lex_state = 203}, - [666] = {.lex_state = 203}, - [667] = {.lex_state = 21}, - [668] = {.lex_state = 21}, - [669] = {.lex_state = 203}, - [670] = {.lex_state = 21}, - [671] = {.lex_state = 203}, - [672] = {.lex_state = 21}, - [673] = {.lex_state = 21}, - [674] = {.lex_state = 21}, - [675] = {.lex_state = 200, .external_lex_state = 4}, - [676] = {.lex_state = 203}, - [677] = {.lex_state = 203}, - [678] = {.lex_state = 21}, - [679] = {.lex_state = 203}, - [680] = {.lex_state = 203}, - [681] = {.lex_state = 203}, - [682] = {.lex_state = 21}, - [683] = {.lex_state = 203}, - [684] = {.lex_state = 203}, - [685] = {.lex_state = 200, .external_lex_state = 4}, - [686] = {.lex_state = 21}, - [687] = {.lex_state = 203}, - [688] = {.lex_state = 203}, - [689] = {.lex_state = 200, .external_lex_state = 4}, - [690] = {.lex_state = 21}, - [691] = {.lex_state = 200, .external_lex_state = 4}, - [692] = {.lex_state = 203}, - [693] = {.lex_state = 21}, - [694] = {.lex_state = 21}, - [695] = {.lex_state = 203}, - [696] = {.lex_state = 203}, - [697] = {.lex_state = 21}, - [698] = {.lex_state = 203}, - [699] = {.lex_state = 203}, - [700] = {.lex_state = 21}, - [701] = {.lex_state = 21}, - [702] = {.lex_state = 201}, - [703] = {.lex_state = 21}, - [704] = {.lex_state = 21}, - [705] = {.lex_state = 21}, - [706] = {.lex_state = 203}, - [707] = {.lex_state = 203}, - [708] = {.lex_state = 21}, - [709] = {.lex_state = 203}, - [710] = {.lex_state = 203}, - [711] = {.lex_state = 21}, - [712] = {.lex_state = 21}, - [713] = {.lex_state = 21}, - [714] = {.lex_state = 21}, - [715] = {.lex_state = 21}, - [716] = {.lex_state = 203}, - [717] = {.lex_state = 200, .external_lex_state = 4}, - [718] = {.lex_state = 21}, - [719] = {.lex_state = 21}, - [720] = {.lex_state = 21}, - [721] = {.lex_state = 21}, - [722] = {.lex_state = 21}, - [723] = {.lex_state = 21}, - [724] = {.lex_state = 203}, - [725] = {.lex_state = 203}, - [726] = {.lex_state = 203}, - [727] = {.lex_state = 203}, - [728] = {.lex_state = 21}, - [729] = {.lex_state = 203}, - [730] = {.lex_state = 203}, - [731] = {.lex_state = 21}, - [732] = {.lex_state = 21}, - [733] = {.lex_state = 203}, - [734] = {.lex_state = 21}, - [735] = {.lex_state = 203}, - [736] = {.lex_state = 21}, - [737] = {.lex_state = 203}, - [738] = {.lex_state = 203}, - [739] = {.lex_state = 203}, - [740] = {.lex_state = 21}, - [741] = {.lex_state = 203}, - [742] = {.lex_state = 203}, - [743] = {.lex_state = 203}, - [744] = {.lex_state = 203}, - [745] = {.lex_state = 203}, - [746] = {.lex_state = 203}, - [747] = {.lex_state = 203}, - [748] = {.lex_state = 203}, - [749] = {.lex_state = 203}, - [750] = {.lex_state = 203}, - [751] = {.lex_state = 203}, - [752] = {.lex_state = 200, .external_lex_state = 4}, - [753] = {.lex_state = 203}, - [754] = {.lex_state = 203}, - [755] = {.lex_state = 203}, - [756] = {.lex_state = 203}, - [757] = {.lex_state = 201}, - [758] = {.lex_state = 203}, - [759] = {.lex_state = 201}, - [760] = {.lex_state = 21}, - [761] = {.lex_state = 21}, - [762] = {.lex_state = 203}, - [763] = {.lex_state = 21}, - [764] = {.lex_state = 203}, - [765] = {.lex_state = 21}, - [766] = {.lex_state = 203}, - [767] = {.lex_state = 203}, - [768] = {.lex_state = 21}, - [769] = {.lex_state = 21}, - [770] = {.lex_state = 203}, - [771] = {.lex_state = 203}, - [772] = {.lex_state = 203}, - [773] = {.lex_state = 21}, - [774] = {.lex_state = 203}, - [775] = {.lex_state = 200, .external_lex_state = 4}, - [776] = {.lex_state = 200, .external_lex_state = 4}, - [777] = {.lex_state = 200, .external_lex_state = 4}, - [778] = {.lex_state = 200, .external_lex_state = 4}, - [779] = {.lex_state = 203}, - [780] = {.lex_state = 203}, - [781] = {.lex_state = 203}, - [782] = {.lex_state = 203}, - [783] = {.lex_state = 200, .external_lex_state = 4}, - [784] = {.lex_state = 21}, - [785] = {.lex_state = 203}, - [786] = {.lex_state = 203}, - [787] = {.lex_state = 203}, - [788] = {.lex_state = 200, .external_lex_state = 4}, - [789] = {.lex_state = 203}, - [790] = {.lex_state = 203}, - [791] = {.lex_state = 203}, - [792] = {.lex_state = 203}, - [793] = {.lex_state = 203}, - [794] = {.lex_state = 203}, - [795] = {.lex_state = 203}, - [796] = {.lex_state = 21}, - [797] = {.lex_state = 21}, - [798] = {.lex_state = 203}, - [799] = {.lex_state = 21}, - [800] = {.lex_state = 21}, - [801] = {.lex_state = 21}, - [802] = {.lex_state = 21}, - [803] = {.lex_state = 21}, - [804] = {.lex_state = 203}, - [805] = {.lex_state = 21}, - [806] = {.lex_state = 21}, - [807] = {.lex_state = 21}, - [808] = {.lex_state = 203}, - [809] = {.lex_state = 21}, - [810] = {.lex_state = 203}, - [811] = {.lex_state = 203}, - [812] = {.lex_state = 203}, - [813] = {.lex_state = 203}, - [814] = {.lex_state = 21}, - [815] = {.lex_state = 203}, - [816] = {.lex_state = 203}, - [817] = {.lex_state = 21}, - [818] = {.lex_state = 203}, - [819] = {.lex_state = 203}, - [820] = {.lex_state = 203}, - [821] = {.lex_state = 21}, - [822] = {.lex_state = 203}, - [823] = {.lex_state = 200, .external_lex_state = 4}, - [824] = {.lex_state = 21}, - [825] = {.lex_state = 21}, - [826] = {.lex_state = 203}, - [827] = {.lex_state = 200, .external_lex_state = 4}, - [828] = {.lex_state = 21}, - [829] = {.lex_state = 21}, - [830] = {.lex_state = 21}, - [831] = {.lex_state = 203}, - [832] = {.lex_state = 21}, - [833] = {.lex_state = 21}, - [834] = {.lex_state = 21}, - [835] = {.lex_state = 21}, - [836] = {.lex_state = 21}, - [837] = {.lex_state = 21}, - [838] = {.lex_state = 200, .external_lex_state = 4}, - [839] = {.lex_state = 21}, - [840] = {.lex_state = 21}, - [841] = {.lex_state = 21}, - [842] = {.lex_state = 21}, - [843] = {.lex_state = 21}, - [844] = {.lex_state = 21}, - [845] = {.lex_state = 203}, - [846] = {.lex_state = 21}, - [847] = {.lex_state = 203}, - [848] = {.lex_state = 200, .external_lex_state = 4}, - [849] = {.lex_state = 21}, - [850] = {.lex_state = 21}, - [851] = {.lex_state = 21}, - [852] = {.lex_state = 203}, - [853] = {.lex_state = 203}, - [854] = {.lex_state = 201}, - [855] = {.lex_state = 203}, - [856] = {.lex_state = 21}, - [857] = {.lex_state = 21}, - [858] = {.lex_state = 21}, - [859] = {.lex_state = 21}, - [860] = {.lex_state = 21}, - [861] = {.lex_state = 203}, - [862] = {.lex_state = 21}, - [863] = {.lex_state = 203}, - [864] = {.lex_state = 21}, - [865] = {.lex_state = 203}, - [866] = {.lex_state = 21}, - [867] = {.lex_state = 21}, - [868] = {.lex_state = 203}, - [869] = {.lex_state = 21}, - [870] = {.lex_state = 21}, - [871] = {.lex_state = 21}, - [872] = {.lex_state = 21}, - [873] = {.lex_state = 200}, - [874] = {.lex_state = 200}, - [875] = {.lex_state = 200}, - [876] = {.lex_state = 200}, - [877] = {.lex_state = 200}, - [878] = {.lex_state = 200}, - [879] = {.lex_state = 200}, - [880] = {.lex_state = 200}, - [881] = {.lex_state = 200}, - [882] = {.lex_state = 200}, - [883] = {.lex_state = 200}, - [884] = {.lex_state = 200}, - [885] = {.lex_state = 200}, - [886] = {.lex_state = 200}, - [887] = {.lex_state = 200}, - [888] = {.lex_state = 200}, - [889] = {.lex_state = 200}, - [890] = {.lex_state = 200}, - [891] = {.lex_state = 200}, - [892] = {.lex_state = 200}, - [893] = {.lex_state = 200}, - [894] = {.lex_state = 200}, - [895] = {.lex_state = 200}, - [896] = {.lex_state = 200}, - [897] = {.lex_state = 200}, - [898] = {.lex_state = 200}, - [899] = {.lex_state = 200}, - [900] = {.lex_state = 200}, - [901] = {.lex_state = 200}, - [902] = {.lex_state = 200}, - [903] = {.lex_state = 200}, - [904] = {.lex_state = 200}, - [905] = {.lex_state = 200}, - [906] = {.lex_state = 200}, - [907] = {.lex_state = 200}, - [908] = {.lex_state = 200}, - [909] = {.lex_state = 200}, - [910] = {.lex_state = 200}, - [911] = {.lex_state = 200}, - [912] = {.lex_state = 200}, - [913] = {.lex_state = 200}, - [914] = {.lex_state = 200}, - [915] = {.lex_state = 200}, - [916] = {.lex_state = 200}, - [917] = {.lex_state = 200}, - [918] = {.lex_state = 200}, - [919] = {.lex_state = 200}, - [920] = {.lex_state = 200}, - [921] = {.lex_state = 200}, - [922] = {.lex_state = 200}, - [923] = {.lex_state = 200}, - [924] = {.lex_state = 206, .external_lex_state = 3}, - [925] = {.lex_state = 200}, - [926] = {.lex_state = 206, .external_lex_state = 3}, - [927] = {.lex_state = 200}, - [928] = {.lex_state = 200}, - [929] = {.lex_state = 200}, - [930] = {.lex_state = 200}, - [931] = {.lex_state = 200}, - [932] = {.lex_state = 200}, - [933] = {.lex_state = 200}, - [934] = {.lex_state = 200}, - [935] = {.lex_state = 200}, - [936] = {.lex_state = 200}, - [937] = {.lex_state = 200}, - [938] = {.lex_state = 200}, - [939] = {.lex_state = 200}, - [940] = {.lex_state = 200}, - [941] = {.lex_state = 200}, - [942] = {.lex_state = 200}, - [943] = {.lex_state = 200}, - [944] = {.lex_state = 200}, - [945] = {.lex_state = 200}, - [946] = {.lex_state = 200}, - [947] = {.lex_state = 200}, - [948] = {.lex_state = 200}, - [949] = {.lex_state = 200}, - [950] = {.lex_state = 200}, - [951] = {.lex_state = 200}, - [952] = {.lex_state = 200}, - [953] = {.lex_state = 200}, - [954] = {.lex_state = 200}, - [955] = {.lex_state = 200}, - [956] = {.lex_state = 200}, - [957] = {.lex_state = 200}, - [958] = {.lex_state = 200}, - [959] = {.lex_state = 200}, - [960] = {.lex_state = 200}, - [961] = {.lex_state = 200}, - [962] = {.lex_state = 200}, - [963] = {.lex_state = 200}, - [964] = {.lex_state = 200}, - [965] = {.lex_state = 200}, - [966] = {.lex_state = 200}, - [967] = {.lex_state = 200}, - [968] = {.lex_state = 200}, - [969] = {.lex_state = 206, .external_lex_state = 3}, - [970] = {.lex_state = 200}, - [971] = {.lex_state = 200}, - [972] = {.lex_state = 200}, - [973] = {.lex_state = 206, .external_lex_state = 2}, - [974] = {.lex_state = 206, .external_lex_state = 2}, - [975] = {.lex_state = 206, .external_lex_state = 2}, - [976] = {.lex_state = 206, .external_lex_state = 2}, - [977] = {.lex_state = 206, .external_lex_state = 2}, - [978] = {.lex_state = 206, .external_lex_state = 2}, - [979] = {.lex_state = 206, .external_lex_state = 2}, - [980] = {.lex_state = 206, .external_lex_state = 2}, - [981] = {.lex_state = 206, .external_lex_state = 2}, - [982] = {.lex_state = 206, .external_lex_state = 2}, - [983] = {.lex_state = 200}, - [984] = {.lex_state = 206, .external_lex_state = 2}, - [985] = {.lex_state = 200}, - [986] = {.lex_state = 200}, - [987] = {.lex_state = 200}, - [988] = {.lex_state = 200}, - [989] = {.lex_state = 200}, - [990] = {.lex_state = 200}, - [991] = {.lex_state = 206, .external_lex_state = 2}, - [992] = {.lex_state = 206, .external_lex_state = 3}, - [993] = {.lex_state = 206, .external_lex_state = 3}, - [994] = {.lex_state = 206, .external_lex_state = 3}, - [995] = {.lex_state = 206, .external_lex_state = 3}, - [996] = {.lex_state = 206, .external_lex_state = 3}, - [997] = {.lex_state = 206, .external_lex_state = 3}, - [998] = {.lex_state = 206, .external_lex_state = 2}, - [999] = {.lex_state = 206, .external_lex_state = 3}, - [1000] = {.lex_state = 206, .external_lex_state = 2}, - [1001] = {.lex_state = 206, .external_lex_state = 3}, - [1002] = {.lex_state = 206, .external_lex_state = 3}, - [1003] = {.lex_state = 206, .external_lex_state = 3}, - [1004] = {.lex_state = 206, .external_lex_state = 3}, - [1005] = {.lex_state = 206, .external_lex_state = 3}, - [1006] = {.lex_state = 206, .external_lex_state = 2}, - [1007] = {.lex_state = 206, .external_lex_state = 3}, - [1008] = {.lex_state = 206, .external_lex_state = 2}, - [1009] = {.lex_state = 206, .external_lex_state = 3}, - [1010] = {.lex_state = 206, .external_lex_state = 3}, - [1011] = {.lex_state = 206, .external_lex_state = 3}, - [1012] = {.lex_state = 206, .external_lex_state = 2}, - [1013] = {.lex_state = 206, .external_lex_state = 2}, - [1014] = {.lex_state = 206, .external_lex_state = 3}, - [1015] = {.lex_state = 206, .external_lex_state = 2}, - [1016] = {.lex_state = 206, .external_lex_state = 3}, - [1017] = {.lex_state = 206, .external_lex_state = 3}, - [1018] = {.lex_state = 206, .external_lex_state = 3}, - [1019] = {.lex_state = 206, .external_lex_state = 3}, - [1020] = {.lex_state = 206, .external_lex_state = 3}, - [1021] = {.lex_state = 206, .external_lex_state = 3}, - [1022] = {.lex_state = 206, .external_lex_state = 3}, - [1023] = {.lex_state = 206, .external_lex_state = 3}, - [1024] = {.lex_state = 206, .external_lex_state = 3}, - [1025] = {.lex_state = 206, .external_lex_state = 3}, - [1026] = {.lex_state = 206, .external_lex_state = 3}, - [1027] = {.lex_state = 206, .external_lex_state = 2}, - [1028] = {.lex_state = 206, .external_lex_state = 2}, - [1029] = {.lex_state = 206, .external_lex_state = 3}, - [1030] = {.lex_state = 206, .external_lex_state = 2}, - [1031] = {.lex_state = 206, .external_lex_state = 3}, - [1032] = {.lex_state = 206, .external_lex_state = 2}, - [1033] = {.lex_state = 206, .external_lex_state = 2}, - [1034] = {.lex_state = 206, .external_lex_state = 3}, - [1035] = {.lex_state = 206, .external_lex_state = 2}, - [1036] = {.lex_state = 206, .external_lex_state = 2}, - [1037] = {.lex_state = 206, .external_lex_state = 2}, - [1038] = {.lex_state = 206, .external_lex_state = 2}, - [1039] = {.lex_state = 206, .external_lex_state = 2}, - [1040] = {.lex_state = 206, .external_lex_state = 2}, - [1041] = {.lex_state = 206, .external_lex_state = 2}, - [1042] = {.lex_state = 206, .external_lex_state = 2}, - [1043] = {.lex_state = 206, .external_lex_state = 2}, - [1044] = {.lex_state = 206, .external_lex_state = 2}, - [1045] = {.lex_state = 206, .external_lex_state = 2}, - [1046] = {.lex_state = 206, .external_lex_state = 2}, - [1047] = {.lex_state = 206, .external_lex_state = 2}, - [1048] = {.lex_state = 206, .external_lex_state = 2}, - [1049] = {.lex_state = 26, .external_lex_state = 3}, - [1050] = {.lex_state = 26, .external_lex_state = 3}, - [1051] = {.lex_state = 26, .external_lex_state = 3}, - [1052] = {.lex_state = 26, .external_lex_state = 3}, - [1053] = {.lex_state = 26, .external_lex_state = 3}, - [1054] = {.lex_state = 31, .external_lex_state = 2}, - [1055] = {.lex_state = 31, .external_lex_state = 2}, - [1056] = {.lex_state = 31, .external_lex_state = 2}, - [1057] = {.lex_state = 31, .external_lex_state = 3}, - [1058] = {.lex_state = 31, .external_lex_state = 2}, - [1059] = {.lex_state = 14}, - [1060] = {.lex_state = 31, .external_lex_state = 2}, - [1061] = {.lex_state = 31, .external_lex_state = 2}, - [1062] = {.lex_state = 31, .external_lex_state = 2}, - [1063] = {.lex_state = 31, .external_lex_state = 2}, - [1064] = {.lex_state = 31, .external_lex_state = 3}, - [1065] = {.lex_state = 31, .external_lex_state = 3}, - [1066] = {.lex_state = 31, .external_lex_state = 2}, - [1067] = {.lex_state = 14}, - [1068] = {.lex_state = 31, .external_lex_state = 2}, - [1069] = {.lex_state = 31, .external_lex_state = 2}, - [1070] = {.lex_state = 31, .external_lex_state = 2}, - [1071] = {.lex_state = 31, .external_lex_state = 3}, - [1072] = {.lex_state = 31, .external_lex_state = 2}, - [1073] = {.lex_state = 31, .external_lex_state = 3}, - [1074] = {.lex_state = 31, .external_lex_state = 2}, - [1075] = {.lex_state = 31, .external_lex_state = 2}, - [1076] = {.lex_state = 31, .external_lex_state = 2}, - [1077] = {.lex_state = 31, .external_lex_state = 2}, - [1078] = {.lex_state = 31, .external_lex_state = 2}, - [1079] = {.lex_state = 31, .external_lex_state = 2}, - [1080] = {.lex_state = 31, .external_lex_state = 2}, - [1081] = {.lex_state = 31, .external_lex_state = 2}, - [1082] = {.lex_state = 31, .external_lex_state = 2}, - [1083] = {.lex_state = 31, .external_lex_state = 2}, - [1084] = {.lex_state = 31, .external_lex_state = 2}, - [1085] = {.lex_state = 31, .external_lex_state = 2}, - [1086] = {.lex_state = 31, .external_lex_state = 2}, - [1087] = {.lex_state = 31, .external_lex_state = 2}, - [1088] = {.lex_state = 31, .external_lex_state = 2}, - [1089] = {.lex_state = 31, .external_lex_state = 2}, - [1090] = {.lex_state = 31, .external_lex_state = 2}, - [1091] = {.lex_state = 31, .external_lex_state = 2}, - [1092] = {.lex_state = 31, .external_lex_state = 2}, - [1093] = {.lex_state = 31, .external_lex_state = 3}, - [1094] = {.lex_state = 31, .external_lex_state = 2}, - [1095] = {.lex_state = 31, .external_lex_state = 2}, - [1096] = {.lex_state = 31, .external_lex_state = 2}, - [1097] = {.lex_state = 31, .external_lex_state = 2}, - [1098] = {.lex_state = 31, .external_lex_state = 2}, - [1099] = {.lex_state = 31, .external_lex_state = 2}, - [1100] = {.lex_state = 31, .external_lex_state = 3}, - [1101] = {.lex_state = 31, .external_lex_state = 2}, - [1102] = {.lex_state = 31, .external_lex_state = 2}, - [1103] = {.lex_state = 31, .external_lex_state = 3}, - [1104] = {.lex_state = 31, .external_lex_state = 3}, - [1105] = {.lex_state = 31, .external_lex_state = 3}, - [1106] = {.lex_state = 31, .external_lex_state = 2}, - [1107] = {.lex_state = 31, .external_lex_state = 2}, - [1108] = {.lex_state = 31, .external_lex_state = 2}, - [1109] = {.lex_state = 31, .external_lex_state = 2}, - [1110] = {.lex_state = 31, .external_lex_state = 2}, - [1111] = {.lex_state = 14}, - [1112] = {.lex_state = 31, .external_lex_state = 2}, - [1113] = {.lex_state = 31, .external_lex_state = 2}, - [1114] = {.lex_state = 31, .external_lex_state = 2}, - [1115] = {.lex_state = 31, .external_lex_state = 2}, - [1116] = {.lex_state = 31, .external_lex_state = 2}, - [1117] = {.lex_state = 31, .external_lex_state = 2}, - [1118] = {.lex_state = 31, .external_lex_state = 2}, - [1119] = {.lex_state = 31, .external_lex_state = 2}, - [1120] = {.lex_state = 31, .external_lex_state = 2}, - [1121] = {.lex_state = 31, .external_lex_state = 2}, - [1122] = {.lex_state = 31, .external_lex_state = 2}, - [1123] = {.lex_state = 31, .external_lex_state = 2}, - [1124] = {.lex_state = 31, .external_lex_state = 2}, - [1125] = {.lex_state = 31, .external_lex_state = 2}, - [1126] = {.lex_state = 31, .external_lex_state = 2}, - [1127] = {.lex_state = 31, .external_lex_state = 2}, - [1128] = {.lex_state = 31, .external_lex_state = 2}, - [1129] = {.lex_state = 31, .external_lex_state = 2}, - [1130] = {.lex_state = 31, .external_lex_state = 2}, - [1131] = {.lex_state = 31, .external_lex_state = 2}, - [1132] = {.lex_state = 31, .external_lex_state = 2}, - [1133] = {.lex_state = 31, .external_lex_state = 2}, - [1134] = {.lex_state = 31, .external_lex_state = 2}, - [1135] = {.lex_state = 14}, - [1136] = {.lex_state = 31, .external_lex_state = 2}, - [1137] = {.lex_state = 30, .external_lex_state = 2}, - [1138] = {.lex_state = 31, .external_lex_state = 2}, - [1139] = {.lex_state = 31, .external_lex_state = 2}, - [1140] = {.lex_state = 31, .external_lex_state = 2}, - [1141] = {.lex_state = 31, .external_lex_state = 2}, - [1142] = {.lex_state = 31, .external_lex_state = 2}, - [1143] = {.lex_state = 31, .external_lex_state = 2}, - [1144] = {.lex_state = 31, .external_lex_state = 2}, - [1145] = {.lex_state = 31, .external_lex_state = 2}, - [1146] = {.lex_state = 31, .external_lex_state = 2}, - [1147] = {.lex_state = 31, .external_lex_state = 2}, - [1148] = {.lex_state = 31, .external_lex_state = 2}, - [1149] = {.lex_state = 31, .external_lex_state = 2}, - [1150] = {.lex_state = 31, .external_lex_state = 2}, - [1151] = {.lex_state = 31, .external_lex_state = 2}, - [1152] = {.lex_state = 14}, - [1153] = {.lex_state = 31, .external_lex_state = 2}, - [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 31, .external_lex_state = 2}, - [1156] = {.lex_state = 31, .external_lex_state = 3}, - [1157] = {.lex_state = 31, .external_lex_state = 2}, - [1158] = {.lex_state = 31, .external_lex_state = 2}, - [1159] = {.lex_state = 31, .external_lex_state = 2}, - [1160] = {.lex_state = 31, .external_lex_state = 2}, - [1161] = {.lex_state = 31, .external_lex_state = 2}, - [1162] = {.lex_state = 31, .external_lex_state = 2}, - [1163] = {.lex_state = 31, .external_lex_state = 2}, - [1164] = {.lex_state = 31, .external_lex_state = 2}, - [1165] = {.lex_state = 31, .external_lex_state = 2}, - [1166] = {.lex_state = 31, .external_lex_state = 3}, - [1167] = {.lex_state = 31, .external_lex_state = 3}, - [1168] = {.lex_state = 31, .external_lex_state = 3}, - [1169] = {.lex_state = 31, .external_lex_state = 3}, - [1170] = {.lex_state = 31, .external_lex_state = 3}, - [1171] = {.lex_state = 31, .external_lex_state = 3}, - [1172] = {.lex_state = 31, .external_lex_state = 3}, - [1173] = {.lex_state = 31, .external_lex_state = 3}, - [1174] = {.lex_state = 31, .external_lex_state = 3}, - [1175] = {.lex_state = 31, .external_lex_state = 3}, - [1176] = {.lex_state = 31, .external_lex_state = 3}, - [1177] = {.lex_state = 31, .external_lex_state = 3}, - [1178] = {.lex_state = 31, .external_lex_state = 3}, - [1179] = {.lex_state = 31, .external_lex_state = 3}, - [1180] = {.lex_state = 31, .external_lex_state = 3}, - [1181] = {.lex_state = 31, .external_lex_state = 3}, - [1182] = {.lex_state = 31, .external_lex_state = 3}, - [1183] = {.lex_state = 31, .external_lex_state = 3}, - [1184] = {.lex_state = 31, .external_lex_state = 3}, - [1185] = {.lex_state = 31, .external_lex_state = 3}, - [1186] = {.lex_state = 31, .external_lex_state = 2}, - [1187] = {.lex_state = 31, .external_lex_state = 3}, - [1188] = {.lex_state = 31, .external_lex_state = 3}, - [1189] = {.lex_state = 31, .external_lex_state = 3}, - [1190] = {.lex_state = 31, .external_lex_state = 3}, - [1191] = {.lex_state = 31, .external_lex_state = 3}, - [1192] = {.lex_state = 31, .external_lex_state = 3}, - [1193] = {.lex_state = 31, .external_lex_state = 3}, - [1194] = {.lex_state = 31, .external_lex_state = 3}, - [1195] = {.lex_state = 31, .external_lex_state = 3}, - [1196] = {.lex_state = 31, .external_lex_state = 3}, - [1197] = {.lex_state = 31, .external_lex_state = 2}, - [1198] = {.lex_state = 31, .external_lex_state = 3}, - [1199] = {.lex_state = 31, .external_lex_state = 3}, - [1200] = {.lex_state = 31, .external_lex_state = 2}, - [1201] = {.lex_state = 31, .external_lex_state = 3}, - [1202] = {.lex_state = 31, .external_lex_state = 3}, - [1203] = {.lex_state = 31, .external_lex_state = 3}, - [1204] = {.lex_state = 31, .external_lex_state = 3}, - [1205] = {.lex_state = 31, .external_lex_state = 3}, - [1206] = {.lex_state = 31, .external_lex_state = 3}, - [1207] = {.lex_state = 31, .external_lex_state = 3}, - [1208] = {.lex_state = 31, .external_lex_state = 3}, - [1209] = {.lex_state = 31, .external_lex_state = 3}, - [1210] = {.lex_state = 31, .external_lex_state = 3}, - [1211] = {.lex_state = 31, .external_lex_state = 3}, - [1212] = {.lex_state = 31, .external_lex_state = 3}, - [1213] = {.lex_state = 31, .external_lex_state = 3}, - [1214] = {.lex_state = 31, .external_lex_state = 3}, - [1215] = {.lex_state = 31, .external_lex_state = 2}, - [1216] = {.lex_state = 31, .external_lex_state = 3}, - [1217] = {.lex_state = 31, .external_lex_state = 3}, - [1218] = {.lex_state = 31, .external_lex_state = 3}, - [1219] = {.lex_state = 31, .external_lex_state = 2}, - [1220] = {.lex_state = 31, .external_lex_state = 3}, - [1221] = {.lex_state = 31, .external_lex_state = 3}, - [1222] = {.lex_state = 31, .external_lex_state = 3}, - [1223] = {.lex_state = 31, .external_lex_state = 3}, - [1224] = {.lex_state = 31, .external_lex_state = 3}, - [1225] = {.lex_state = 31, .external_lex_state = 3}, - [1226] = {.lex_state = 31, .external_lex_state = 3}, - [1227] = {.lex_state = 31, .external_lex_state = 3}, - [1228] = {.lex_state = 31, .external_lex_state = 3}, - [1229] = {.lex_state = 31, .external_lex_state = 3}, - [1230] = {.lex_state = 31, .external_lex_state = 3}, - [1231] = {.lex_state = 31, .external_lex_state = 3}, - [1232] = {.lex_state = 31, .external_lex_state = 3}, - [1233] = {.lex_state = 31, .external_lex_state = 3}, - [1234] = {.lex_state = 31, .external_lex_state = 2}, - [1235] = {.lex_state = 31, .external_lex_state = 3}, - [1236] = {.lex_state = 31, .external_lex_state = 2}, - [1237] = {.lex_state = 31, .external_lex_state = 3}, - [1238] = {.lex_state = 31, .external_lex_state = 2}, - [1239] = {.lex_state = 31, .external_lex_state = 2}, - [1240] = {.lex_state = 31, .external_lex_state = 3}, - [1241] = {.lex_state = 31, .external_lex_state = 2}, - [1242] = {.lex_state = 31, .external_lex_state = 3}, - [1243] = {.lex_state = 31, .external_lex_state = 3}, - [1244] = {.lex_state = 31, .external_lex_state = 3}, - [1245] = {.lex_state = 31, .external_lex_state = 3}, - [1246] = {.lex_state = 31, .external_lex_state = 3}, - [1247] = {.lex_state = 31, .external_lex_state = 3}, - [1248] = {.lex_state = 31, .external_lex_state = 3}, - [1249] = {.lex_state = 31, .external_lex_state = 3}, - [1250] = {.lex_state = 31, .external_lex_state = 3}, - [1251] = {.lex_state = 31, .external_lex_state = 3}, - [1252] = {.lex_state = 31, .external_lex_state = 3}, - [1253] = {.lex_state = 31, .external_lex_state = 3}, - [1254] = {.lex_state = 31, .external_lex_state = 3}, - [1255] = {.lex_state = 31, .external_lex_state = 2}, - [1256] = {.lex_state = 31, .external_lex_state = 3}, - [1257] = {.lex_state = 31, .external_lex_state = 3}, - [1258] = {.lex_state = 31, .external_lex_state = 3}, - [1259] = {.lex_state = 31, .external_lex_state = 3}, - [1260] = {.lex_state = 31, .external_lex_state = 3}, - [1261] = {.lex_state = 31, .external_lex_state = 3}, - [1262] = {.lex_state = 31, .external_lex_state = 2}, - [1263] = {.lex_state = 31, .external_lex_state = 3}, - [1264] = {.lex_state = 31, .external_lex_state = 2}, - [1265] = {.lex_state = 31, .external_lex_state = 3}, - [1266] = {.lex_state = 31, .external_lex_state = 3}, - [1267] = {.lex_state = 31, .external_lex_state = 3}, - [1268] = {.lex_state = 31, .external_lex_state = 3}, - [1269] = {.lex_state = 31, .external_lex_state = 3}, - [1270] = {.lex_state = 31, .external_lex_state = 3}, - [1271] = {.lex_state = 31, .external_lex_state = 3}, - [1272] = {.lex_state = 31, .external_lex_state = 3}, - [1273] = {.lex_state = 31, .external_lex_state = 3}, - [1274] = {.lex_state = 31, .external_lex_state = 3}, - [1275] = {.lex_state = 31, .external_lex_state = 3}, - [1276] = {.lex_state = 31, .external_lex_state = 3}, - [1277] = {.lex_state = 31, .external_lex_state = 3}, - [1278] = {.lex_state = 31, .external_lex_state = 3}, - [1279] = {.lex_state = 31, .external_lex_state = 3}, - [1280] = {.lex_state = 30, .external_lex_state = 3}, - [1281] = {.lex_state = 31, .external_lex_state = 3}, - [1282] = {.lex_state = 31, .external_lex_state = 3}, - [1283] = {.lex_state = 31, .external_lex_state = 3}, - [1284] = {.lex_state = 31, .external_lex_state = 3}, - [1285] = {.lex_state = 31, .external_lex_state = 2}, - [1286] = {.lex_state = 31, .external_lex_state = 3}, - [1287] = {.lex_state = 31, .external_lex_state = 3}, - [1288] = {.lex_state = 31, .external_lex_state = 3}, - [1289] = {.lex_state = 31, .external_lex_state = 3}, - [1290] = {.lex_state = 31, .external_lex_state = 3}, - [1291] = {.lex_state = 31, .external_lex_state = 3}, - [1292] = {.lex_state = 31, .external_lex_state = 3}, - [1293] = {.lex_state = 31, .external_lex_state = 3}, - [1294] = {.lex_state = 31, .external_lex_state = 2}, - [1295] = {.lex_state = 31, .external_lex_state = 3}, - [1296] = {.lex_state = 31, .external_lex_state = 3}, - [1297] = {.lex_state = 31, .external_lex_state = 3}, - [1298] = {.lex_state = 31, .external_lex_state = 2}, - [1299] = {.lex_state = 31, .external_lex_state = 2}, - [1300] = {.lex_state = 31, .external_lex_state = 3}, - [1301] = {.lex_state = 31, .external_lex_state = 2}, - [1302] = {.lex_state = 31, .external_lex_state = 3}, - [1303] = {.lex_state = 31, .external_lex_state = 3}, - [1304] = {.lex_state = 31, .external_lex_state = 3}, - [1305] = {.lex_state = 31, .external_lex_state = 3}, - [1306] = {.lex_state = 31, .external_lex_state = 2}, - [1307] = {.lex_state = 31, .external_lex_state = 3}, - [1308] = {.lex_state = 31, .external_lex_state = 3}, - [1309] = {.lex_state = 31, .external_lex_state = 3}, - [1310] = {.lex_state = 33, .external_lex_state = 3}, - [1311] = {.lex_state = 31, .external_lex_state = 2}, - [1312] = {.lex_state = 31, .external_lex_state = 3}, - [1313] = {.lex_state = 31, .external_lex_state = 3}, - [1314] = {.lex_state = 31, .external_lex_state = 3}, - [1315] = {.lex_state = 31, .external_lex_state = 3}, - [1316] = {.lex_state = 31, .external_lex_state = 3}, - [1317] = {.lex_state = 31, .external_lex_state = 3}, - [1318] = {.lex_state = 31, .external_lex_state = 3}, - [1319] = {.lex_state = 31, .external_lex_state = 3}, - [1320] = {.lex_state = 31, .external_lex_state = 3}, - [1321] = {.lex_state = 31, .external_lex_state = 3}, - [1322] = {.lex_state = 31, .external_lex_state = 3}, - [1323] = {.lex_state = 31, .external_lex_state = 3}, - [1324] = {.lex_state = 31, .external_lex_state = 3}, - [1325] = {.lex_state = 31, .external_lex_state = 3}, - [1326] = {.lex_state = 31, .external_lex_state = 3}, - [1327] = {.lex_state = 31, .external_lex_state = 3}, - [1328] = {.lex_state = 31, .external_lex_state = 3}, - [1329] = {.lex_state = 31, .external_lex_state = 3}, - [1330] = {.lex_state = 31, .external_lex_state = 2}, - [1331] = {.lex_state = 31, .external_lex_state = 3}, - [1332] = {.lex_state = 31, .external_lex_state = 3}, - [1333] = {.lex_state = 31, .external_lex_state = 3}, - [1334] = {.lex_state = 31, .external_lex_state = 3}, - [1335] = {.lex_state = 31, .external_lex_state = 3}, - [1336] = {.lex_state = 31, .external_lex_state = 3}, - [1337] = {.lex_state = 31, .external_lex_state = 3}, - [1338] = {.lex_state = 31, .external_lex_state = 2}, - [1339] = {.lex_state = 31, .external_lex_state = 2}, - [1340] = {.lex_state = 31, .external_lex_state = 2}, - [1341] = {.lex_state = 31, .external_lex_state = 2}, - [1342] = {.lex_state = 31, .external_lex_state = 2}, - [1343] = {.lex_state = 31, .external_lex_state = 2}, - [1344] = {.lex_state = 31, .external_lex_state = 2}, - [1345] = {.lex_state = 31, .external_lex_state = 2}, - [1346] = {.lex_state = 31, .external_lex_state = 2}, - [1347] = {.lex_state = 31, .external_lex_state = 3}, - [1348] = {.lex_state = 31, .external_lex_state = 2}, - [1349] = {.lex_state = 31, .external_lex_state = 2}, - [1350] = {.lex_state = 31, .external_lex_state = 2}, - [1351] = {.lex_state = 31, .external_lex_state = 2}, - [1352] = {.lex_state = 31, .external_lex_state = 2}, - [1353] = {.lex_state = 31, .external_lex_state = 2}, - [1354] = {.lex_state = 31, .external_lex_state = 3}, - [1355] = {.lex_state = 31, .external_lex_state = 2}, - [1356] = {.lex_state = 31, .external_lex_state = 2}, - [1357] = {.lex_state = 31, .external_lex_state = 2}, - [1358] = {.lex_state = 31, .external_lex_state = 3}, - [1359] = {.lex_state = 31, .external_lex_state = 2}, - [1360] = {.lex_state = 31, .external_lex_state = 2}, - [1361] = {.lex_state = 31, .external_lex_state = 3}, - [1362] = {.lex_state = 31, .external_lex_state = 2}, - [1363] = {.lex_state = 31, .external_lex_state = 2}, - [1364] = {.lex_state = 31, .external_lex_state = 2}, - [1365] = {.lex_state = 31, .external_lex_state = 2}, - [1366] = {.lex_state = 31, .external_lex_state = 3}, - [1367] = {.lex_state = 31, .external_lex_state = 3}, - [1368] = {.lex_state = 31, .external_lex_state = 2}, - [1369] = {.lex_state = 31, .external_lex_state = 3}, - [1370] = {.lex_state = 31, .external_lex_state = 2}, - [1371] = {.lex_state = 31, .external_lex_state = 2}, - [1372] = {.lex_state = 31, .external_lex_state = 3}, - [1373] = {.lex_state = 31, .external_lex_state = 2}, - [1374] = {.lex_state = 31, .external_lex_state = 2}, - [1375] = {.lex_state = 31, .external_lex_state = 2}, - [1376] = {.lex_state = 31, .external_lex_state = 2}, - [1377] = {.lex_state = 31, .external_lex_state = 2}, - [1378] = {.lex_state = 31, .external_lex_state = 2}, - [1379] = {.lex_state = 31, .external_lex_state = 2}, - [1380] = {.lex_state = 31, .external_lex_state = 2}, - [1381] = {.lex_state = 31, .external_lex_state = 2}, - [1382] = {.lex_state = 31, .external_lex_state = 2}, - [1383] = {.lex_state = 31, .external_lex_state = 2}, - [1384] = {.lex_state = 31, .external_lex_state = 2}, - [1385] = {.lex_state = 31, .external_lex_state = 2}, - [1386] = {.lex_state = 31, .external_lex_state = 2}, - [1387] = {.lex_state = 31, .external_lex_state = 3}, - [1388] = {.lex_state = 31, .external_lex_state = 2}, - [1389] = {.lex_state = 31, .external_lex_state = 2}, - [1390] = {.lex_state = 31, .external_lex_state = 2}, - [1391] = {.lex_state = 31, .external_lex_state = 2}, - [1392] = {.lex_state = 31, .external_lex_state = 2}, - [1393] = {.lex_state = 31, .external_lex_state = 2}, - [1394] = {.lex_state = 31, .external_lex_state = 2}, - [1395] = {.lex_state = 31, .external_lex_state = 3}, - [1396] = {.lex_state = 31, .external_lex_state = 2}, - [1397] = {.lex_state = 31, .external_lex_state = 2}, - [1398] = {.lex_state = 31, .external_lex_state = 2}, - [1399] = {.lex_state = 31, .external_lex_state = 2}, - [1400] = {.lex_state = 31, .external_lex_state = 2}, - [1401] = {.lex_state = 31, .external_lex_state = 3}, - [1402] = {.lex_state = 31, .external_lex_state = 3}, - [1403] = {.lex_state = 31, .external_lex_state = 2}, - [1404] = {.lex_state = 31, .external_lex_state = 2}, - [1405] = {.lex_state = 31, .external_lex_state = 2}, - [1406] = {.lex_state = 31, .external_lex_state = 2}, - [1407] = {.lex_state = 31, .external_lex_state = 2}, - [1408] = {.lex_state = 31, .external_lex_state = 2}, - [1409] = {.lex_state = 31, .external_lex_state = 2}, - [1410] = {.lex_state = 31, .external_lex_state = 2}, - [1411] = {.lex_state = 31, .external_lex_state = 2}, - [1412] = {.lex_state = 31, .external_lex_state = 2}, - [1413] = {.lex_state = 31, .external_lex_state = 2}, - [1414] = {.lex_state = 31, .external_lex_state = 2}, - [1415] = {.lex_state = 31, .external_lex_state = 2}, - [1416] = {.lex_state = 31, .external_lex_state = 2}, - [1417] = {.lex_state = 31, .external_lex_state = 2}, - [1418] = {.lex_state = 31, .external_lex_state = 2}, - [1419] = {.lex_state = 31, .external_lex_state = 2}, - [1420] = {.lex_state = 31, .external_lex_state = 2}, - [1421] = {.lex_state = 31, .external_lex_state = 2}, - [1422] = {.lex_state = 31, .external_lex_state = 2}, - [1423] = {.lex_state = 31, .external_lex_state = 2}, - [1424] = {.lex_state = 31, .external_lex_state = 2}, - [1425] = {.lex_state = 31, .external_lex_state = 2}, - [1426] = {.lex_state = 31, .external_lex_state = 2}, - [1427] = {.lex_state = 31, .external_lex_state = 2}, - [1428] = {.lex_state = 31, .external_lex_state = 2}, - [1429] = {.lex_state = 31, .external_lex_state = 2}, - [1430] = {.lex_state = 31, .external_lex_state = 2}, - [1431] = {.lex_state = 31, .external_lex_state = 2}, - [1432] = {.lex_state = 31, .external_lex_state = 2}, - [1433] = {.lex_state = 31, .external_lex_state = 2}, - [1434] = {.lex_state = 31, .external_lex_state = 2}, - [1435] = {.lex_state = 31, .external_lex_state = 2}, - [1436] = {.lex_state = 31, .external_lex_state = 2}, - [1437] = {.lex_state = 31, .external_lex_state = 2}, - [1438] = {.lex_state = 31, .external_lex_state = 2}, - [1439] = {.lex_state = 31, .external_lex_state = 2}, - [1440] = {.lex_state = 31, .external_lex_state = 2}, - [1441] = {.lex_state = 33, .external_lex_state = 2}, - [1442] = {.lex_state = 31, .external_lex_state = 2}, - [1443] = {.lex_state = 31, .external_lex_state = 2}, - [1444] = {.lex_state = 31, .external_lex_state = 2}, - [1445] = {.lex_state = 31, .external_lex_state = 2}, - [1446] = {.lex_state = 31, .external_lex_state = 2}, - [1447] = {.lex_state = 31, .external_lex_state = 2}, - [1448] = {.lex_state = 38}, - [1449] = {.lex_state = 38}, - [1450] = {.lex_state = 38}, - [1451] = {.lex_state = 38}, - [1452] = {.lex_state = 38}, - [1453] = {.lex_state = 38}, - [1454] = {.lex_state = 38}, - [1455] = {.lex_state = 38}, - [1456] = {.lex_state = 38}, - [1457] = {.lex_state = 38}, - [1458] = {.lex_state = 38}, - [1459] = {.lex_state = 38}, - [1460] = {.lex_state = 38}, - [1461] = {.lex_state = 38}, - [1462] = {.lex_state = 38}, - [1463] = {.lex_state = 38}, - [1464] = {.lex_state = 38}, - [1465] = {.lex_state = 38}, - [1466] = {.lex_state = 38}, - [1467] = {.lex_state = 38}, - [1468] = {.lex_state = 38}, - [1469] = {.lex_state = 38}, - [1470] = {.lex_state = 38}, - [1471] = {.lex_state = 38}, - [1472] = {.lex_state = 38}, - [1473] = {.lex_state = 38}, - [1474] = {.lex_state = 38}, - [1475] = {.lex_state = 38}, - [1476] = {.lex_state = 38}, - [1477] = {.lex_state = 38}, - [1478] = {.lex_state = 38}, - [1479] = {.lex_state = 38}, - [1480] = {.lex_state = 34}, - [1481] = {.lex_state = 34}, - [1482] = {.lex_state = 34}, - [1483] = {.lex_state = 34}, - [1484] = {.lex_state = 34}, - [1485] = {.lex_state = 34}, - [1486] = {.lex_state = 34}, - [1487] = {.lex_state = 34}, - [1488] = {.lex_state = 34}, - [1489] = {.lex_state = 34}, - [1490] = {.lex_state = 34}, - [1491] = {.lex_state = 34}, - [1492] = {.lex_state = 34}, - [1493] = {.lex_state = 34}, - [1494] = {.lex_state = 34}, - [1495] = {.lex_state = 34}, - [1496] = {.lex_state = 34}, - [1497] = {.lex_state = 34}, - [1498] = {.lex_state = 34}, - [1499] = {.lex_state = 34}, - [1500] = {.lex_state = 34, .external_lex_state = 4}, - [1501] = {.lex_state = 34}, - [1502] = {.lex_state = 34}, - [1503] = {.lex_state = 34}, - [1504] = {.lex_state = 34}, - [1505] = {.lex_state = 34}, - [1506] = {.lex_state = 34}, - [1507] = {.lex_state = 36}, - [1508] = {.lex_state = 34}, - [1509] = {.lex_state = 38}, - [1510] = {.lex_state = 34, .external_lex_state = 4}, - [1511] = {.lex_state = 34, .external_lex_state = 4}, - [1512] = {.lex_state = 34, .external_lex_state = 4}, - [1513] = {.lex_state = 34}, - [1514] = {.lex_state = 34}, - [1515] = {.lex_state = 38}, - [1516] = {.lex_state = 34, .external_lex_state = 4}, - [1517] = {.lex_state = 34, .external_lex_state = 4}, - [1518] = {.lex_state = 34, .external_lex_state = 4}, - [1519] = {.lex_state = 34}, - [1520] = {.lex_state = 38, .external_lex_state = 4}, - [1521] = {.lex_state = 38, .external_lex_state = 4}, - [1522] = {.lex_state = 34, .external_lex_state = 4}, - [1523] = {.lex_state = 36}, - [1524] = {.lex_state = 34, .external_lex_state = 4}, - [1525] = {.lex_state = 34, .external_lex_state = 4}, - [1526] = {.lex_state = 34, .external_lex_state = 4}, - [1527] = {.lex_state = 34, .external_lex_state = 4}, - [1528] = {.lex_state = 38}, - [1529] = {.lex_state = 38}, - [1530] = {.lex_state = 38}, - [1531] = {.lex_state = 38}, - [1532] = {.lex_state = 38}, - [1533] = {.lex_state = 38}, - [1534] = {.lex_state = 38}, - [1535] = {.lex_state = 38}, - [1536] = {.lex_state = 38}, - [1537] = {.lex_state = 38}, - [1538] = {.lex_state = 38}, - [1539] = {.lex_state = 37}, - [1540] = {.lex_state = 38}, - [1541] = {.lex_state = 38}, - [1542] = {.lex_state = 206}, - [1543] = {.lex_state = 38}, - [1544] = {.lex_state = 38}, - [1545] = {.lex_state = 36}, - [1546] = {.lex_state = 38}, - [1547] = {.lex_state = 38}, - [1548] = {.lex_state = 38}, - [1549] = {.lex_state = 38}, - [1550] = {.lex_state = 38}, - [1551] = {.lex_state = 36}, - [1552] = {.lex_state = 38}, - [1553] = {.lex_state = 38}, - [1554] = {.lex_state = 38}, - [1555] = {.lex_state = 38}, - [1556] = {.lex_state = 38}, - [1557] = {.lex_state = 38}, - [1558] = {.lex_state = 38}, - [1559] = {.lex_state = 38}, - [1560] = {.lex_state = 38}, - [1561] = {.lex_state = 38}, - [1562] = {.lex_state = 38}, - [1563] = {.lex_state = 34}, - [1564] = {.lex_state = 38}, - [1565] = {.lex_state = 38}, - [1566] = {.lex_state = 38}, - [1567] = {.lex_state = 38}, - [1568] = {.lex_state = 38}, - [1569] = {.lex_state = 37}, - [1570] = {.lex_state = 206}, - [1571] = {.lex_state = 34}, - [1572] = {.lex_state = 34}, - [1573] = {.lex_state = 34}, - [1574] = {.lex_state = 34}, - [1575] = {.lex_state = 34}, - [1576] = {.lex_state = 206}, - [1577] = {.lex_state = 38}, - [1578] = {.lex_state = 38}, - [1579] = {.lex_state = 38}, - [1580] = {.lex_state = 34}, - [1581] = {.lex_state = 34}, - [1582] = {.lex_state = 206}, - [1583] = {.lex_state = 206}, - [1584] = {.lex_state = 206}, - [1585] = {.lex_state = 34}, - [1586] = {.lex_state = 36}, - [1587] = {.lex_state = 34}, - [1588] = {.lex_state = 34}, - [1589] = {.lex_state = 36}, - [1590] = {.lex_state = 34}, - [1591] = {.lex_state = 34}, - [1592] = {.lex_state = 36}, - [1593] = {.lex_state = 206}, - [1594] = {.lex_state = 206}, - [1595] = {.lex_state = 34}, - [1596] = {.lex_state = 36}, - [1597] = {.lex_state = 206}, - [1598] = {.lex_state = 34}, - [1599] = {.lex_state = 34}, - [1600] = {.lex_state = 206}, - [1601] = {.lex_state = 36}, - [1602] = {.lex_state = 34}, - [1603] = {.lex_state = 34}, - [1604] = {.lex_state = 34}, - [1605] = {.lex_state = 34}, - [1606] = {.lex_state = 34}, - [1607] = {.lex_state = 36}, - [1608] = {.lex_state = 206}, - [1609] = {.lex_state = 34}, - [1610] = {.lex_state = 34}, - [1611] = {.lex_state = 34}, - [1612] = {.lex_state = 34}, - [1613] = {.lex_state = 34}, - [1614] = {.lex_state = 34}, - [1615] = {.lex_state = 34}, - [1616] = {.lex_state = 34}, - [1617] = {.lex_state = 34}, - [1618] = {.lex_state = 34}, - [1619] = {.lex_state = 34}, - [1620] = {.lex_state = 34}, - [1621] = {.lex_state = 34}, - [1622] = {.lex_state = 34}, - [1623] = {.lex_state = 34}, - [1624] = {.lex_state = 34}, - [1625] = {.lex_state = 34}, - [1626] = {.lex_state = 34}, - [1627] = {.lex_state = 38}, - [1628] = {.lex_state = 34}, - [1629] = {.lex_state = 34}, - [1630] = {.lex_state = 34}, - [1631] = {.lex_state = 34}, - [1632] = {.lex_state = 34}, - [1633] = {.lex_state = 34}, - [1634] = {.lex_state = 34}, - [1635] = {.lex_state = 34}, - [1636] = {.lex_state = 34}, - [1637] = {.lex_state = 38}, - [1638] = {.lex_state = 34}, - [1639] = {.lex_state = 34}, - [1640] = {.lex_state = 34}, - [1641] = {.lex_state = 38}, - [1642] = {.lex_state = 34}, - [1643] = {.lex_state = 34}, - [1644] = {.lex_state = 38}, - [1645] = {.lex_state = 34}, - [1646] = {.lex_state = 38}, - [1647] = {.lex_state = 38}, - [1648] = {.lex_state = 48}, - [1649] = {.lex_state = 48}, - [1650] = {.lex_state = 48}, - [1651] = {.lex_state = 48}, - [1652] = {.lex_state = 48}, - [1653] = {.lex_state = 48}, - [1654] = {.lex_state = 48}, - [1655] = {.lex_state = 48}, - [1656] = {.lex_state = 48}, - [1657] = {.lex_state = 51}, - [1658] = {.lex_state = 51}, - [1659] = {.lex_state = 51}, - [1660] = {.lex_state = 51}, - [1661] = {.lex_state = 51}, - [1662] = {.lex_state = 51}, - [1663] = {.lex_state = 51}, - [1664] = {.lex_state = 51}, - [1665] = {.lex_state = 51}, - [1666] = {.lex_state = 51}, - [1667] = {.lex_state = 51}, - [1668] = {.lex_state = 51}, - [1669] = {.lex_state = 51}, - [1670] = {.lex_state = 51}, - [1671] = {.lex_state = 51}, - [1672] = {.lex_state = 39}, - [1673] = {.lex_state = 39}, - [1674] = {.lex_state = 51}, - [1675] = {.lex_state = 51}, - [1676] = {.lex_state = 51}, - [1677] = {.lex_state = 51}, - [1678] = {.lex_state = 51}, - [1679] = {.lex_state = 51}, - [1680] = {.lex_state = 51}, - [1681] = {.lex_state = 51}, - [1682] = {.lex_state = 51}, - [1683] = {.lex_state = 51}, - [1684] = {.lex_state = 51}, - [1685] = {.lex_state = 51}, - [1686] = {.lex_state = 51}, - [1687] = {.lex_state = 51}, - [1688] = {.lex_state = 51}, - [1689] = {.lex_state = 51}, - [1690] = {.lex_state = 51}, - [1691] = {.lex_state = 51}, - [1692] = {.lex_state = 35}, - [1693] = {.lex_state = 35}, - [1694] = {.lex_state = 35}, - [1695] = {.lex_state = 51}, - [1696] = {.lex_state = 206}, - [1697] = {.lex_state = 35}, - [1698] = {.lex_state = 35}, - [1699] = {.lex_state = 206}, - [1700] = {.lex_state = 35}, - [1701] = {.lex_state = 35}, - [1702] = {.lex_state = 35}, - [1703] = {.lex_state = 35}, - [1704] = {.lex_state = 39, .external_lex_state = 4}, - [1705] = {.lex_state = 39, .external_lex_state = 4}, - [1706] = {.lex_state = 35}, - [1707] = {.lex_state = 206}, - [1708] = {.lex_state = 35}, - [1709] = {.lex_state = 35}, - [1710] = {.lex_state = 39}, - [1711] = {.lex_state = 206, .external_lex_state = 4}, - [1712] = {.lex_state = 35}, - [1713] = {.lex_state = 206}, - [1714] = {.lex_state = 39}, - [1715] = {.lex_state = 35}, - [1716] = {.lex_state = 35}, - [1717] = {.lex_state = 35}, - [1718] = {.lex_state = 206, .external_lex_state = 4}, - [1719] = {.lex_state = 39}, - [1720] = {.lex_state = 206}, - [1721] = {.lex_state = 39}, - [1722] = {.lex_state = 35}, - [1723] = {.lex_state = 206}, - [1724] = {.lex_state = 35}, - [1725] = {.lex_state = 39}, - [1726] = {.lex_state = 206}, - [1727] = {.lex_state = 35}, - [1728] = {.lex_state = 206, .external_lex_state = 4}, - [1729] = {.lex_state = 39, .external_lex_state = 4}, - [1730] = {.lex_state = 206, .external_lex_state = 5}, - [1731] = {.lex_state = 206, .external_lex_state = 4}, - [1732] = {.lex_state = 206}, - [1733] = {.lex_state = 206, .external_lex_state = 4}, - [1734] = {.lex_state = 35}, - [1735] = {.lex_state = 206}, - [1736] = {.lex_state = 206, .external_lex_state = 4}, - [1737] = {.lex_state = 51}, - [1738] = {.lex_state = 51}, - [1739] = {.lex_state = 206}, - [1740] = {.lex_state = 39, .external_lex_state = 4}, - [1741] = {.lex_state = 31}, - [1742] = {.lex_state = 39, .external_lex_state = 4}, - [1743] = {.lex_state = 51}, - [1744] = {.lex_state = 39, .external_lex_state = 4}, - [1745] = {.lex_state = 35}, - [1746] = {.lex_state = 206}, - [1747] = {.lex_state = 35}, - [1748] = {.lex_state = 31}, - [1749] = {.lex_state = 206, .external_lex_state = 5}, - [1750] = {.lex_state = 206, .external_lex_state = 5}, - [1751] = {.lex_state = 39, .external_lex_state = 4}, - [1752] = {.lex_state = 39, .external_lex_state = 4}, - [1753] = {.lex_state = 206}, - [1754] = {.lex_state = 35}, - [1755] = {.lex_state = 206, .external_lex_state = 5}, - [1756] = {.lex_state = 35}, - [1757] = {.lex_state = 35}, - [1758] = {.lex_state = 206}, - [1759] = {.lex_state = 206}, - [1760] = {.lex_state = 206, .external_lex_state = 5}, - [1761] = {.lex_state = 206}, - [1762] = {.lex_state = 206}, - [1763] = {.lex_state = 206}, - [1764] = {.lex_state = 206}, - [1765] = {.lex_state = 35}, - [1766] = {.lex_state = 39, .external_lex_state = 4}, - [1767] = {.lex_state = 206}, - [1768] = {.lex_state = 39, .external_lex_state = 4}, - [1769] = {.lex_state = 206}, - [1770] = {.lex_state = 206}, - [1771] = {.lex_state = 35}, - [1772] = {.lex_state = 35}, - [1773] = {.lex_state = 206}, - [1774] = {.lex_state = 51}, - [1775] = {.lex_state = 52}, - [1776] = {.lex_state = 206}, - [1777] = {.lex_state = 52}, - [1778] = {.lex_state = 51}, - [1779] = {.lex_state = 35}, - [1780] = {.lex_state = 206}, - [1781] = {.lex_state = 206}, - [1782] = {.lex_state = 48}, - [1783] = {.lex_state = 35}, - [1784] = {.lex_state = 51}, - [1785] = {.lex_state = 52}, - [1786] = {.lex_state = 51}, - [1787] = {.lex_state = 52}, - [1788] = {.lex_state = 51}, - [1789] = {.lex_state = 52}, - [1790] = {.lex_state = 51}, - [1791] = {.lex_state = 51}, - [1792] = {.lex_state = 51}, - [1793] = {.lex_state = 206}, - [1794] = {.lex_state = 51}, - [1795] = {.lex_state = 51}, - [1796] = {.lex_state = 48}, - [1797] = {.lex_state = 48}, - [1798] = {.lex_state = 206}, - [1799] = {.lex_state = 48}, - [1800] = {.lex_state = 52}, - [1801] = {.lex_state = 52}, - [1802] = {.lex_state = 48}, - [1803] = {.lex_state = 51}, - [1804] = {.lex_state = 52}, - [1805] = {.lex_state = 51}, - [1806] = {.lex_state = 51}, - [1807] = {.lex_state = 206}, - [1808] = {.lex_state = 206}, - [1809] = {.lex_state = 52}, - [1810] = {.lex_state = 48}, - [1811] = {.lex_state = 52}, - [1812] = {.lex_state = 51}, - [1813] = {.lex_state = 206, .external_lex_state = 4}, - [1814] = {.lex_state = 206}, - [1815] = {.lex_state = 51}, - [1816] = {.lex_state = 52}, - [1817] = {.lex_state = 48}, - [1818] = {.lex_state = 48}, - [1819] = {.lex_state = 48}, - [1820] = {.lex_state = 51}, - [1821] = {.lex_state = 35}, - [1822] = {.lex_state = 48}, - [1823] = {.lex_state = 48}, - [1824] = {.lex_state = 51}, - [1825] = {.lex_state = 48}, - [1826] = {.lex_state = 51}, - [1827] = {.lex_state = 206}, - [1828] = {.lex_state = 35}, - [1829] = {.lex_state = 52}, - [1830] = {.lex_state = 52}, - [1831] = {.lex_state = 39, .external_lex_state = 4}, - [1832] = {.lex_state = 51}, - [1833] = {.lex_state = 206}, - [1834] = {.lex_state = 48}, - [1835] = {.lex_state = 51}, - [1836] = {.lex_state = 51}, - [1837] = {.lex_state = 48}, - [1838] = {.lex_state = 51}, - [1839] = {.lex_state = 48}, - [1840] = {.lex_state = 48}, - [1841] = {.lex_state = 51}, - [1842] = {.lex_state = 206}, - [1843] = {.lex_state = 48}, - [1844] = {.lex_state = 206}, - [1845] = {.lex_state = 51}, - [1846] = {.lex_state = 48}, - [1847] = {.lex_state = 206}, - [1848] = {.lex_state = 52}, - [1849] = {.lex_state = 206}, - [1850] = {.lex_state = 3}, - [1851] = {.lex_state = 39}, - [1852] = {.lex_state = 206}, - [1853] = {.lex_state = 39}, - [1854] = {.lex_state = 39}, - [1855] = {.lex_state = 206}, - [1856] = {.lex_state = 42}, - [1857] = {.lex_state = 41}, - [1858] = {.lex_state = 206}, - [1859] = {.lex_state = 42}, - [1860] = {.lex_state = 41}, - [1861] = {.lex_state = 41}, - [1862] = {.lex_state = 206}, - [1863] = {.lex_state = 206, .external_lex_state = 4}, - [1864] = {.lex_state = 206, .external_lex_state = 4}, - [1865] = {.lex_state = 42}, - [1866] = {.lex_state = 206}, - [1867] = {.lex_state = 206, .external_lex_state = 4}, - [1868] = {.lex_state = 35}, - [1869] = {.lex_state = 206, .external_lex_state = 4}, - [1870] = {.lex_state = 206, .external_lex_state = 4}, - [1871] = {.lex_state = 206}, - [1872] = {.lex_state = 41}, - [1873] = {.lex_state = 42}, - [1874] = {.lex_state = 206}, - [1875] = {.lex_state = 206, .external_lex_state = 4}, - [1876] = {.lex_state = 206}, - [1877] = {.lex_state = 35}, - [1878] = {.lex_state = 3}, - [1879] = {.lex_state = 35}, - [1880] = {.lex_state = 35}, - [1881] = {.lex_state = 206}, - [1882] = {.lex_state = 3}, - [1883] = {.lex_state = 206}, - [1884] = {.lex_state = 206}, - [1885] = {.lex_state = 206}, - [1886] = {.lex_state = 206, .external_lex_state = 4}, - [1887] = {.lex_state = 3}, - [1888] = {.lex_state = 206}, - [1889] = {.lex_state = 206, .external_lex_state = 4}, - [1890] = {.lex_state = 42}, - [1891] = {.lex_state = 206}, - [1892] = {.lex_state = 35}, - [1893] = {.lex_state = 41}, - [1894] = {.lex_state = 206}, - [1895] = {.lex_state = 206}, - [1896] = {.lex_state = 206}, - [1897] = {.lex_state = 35}, - [1898] = {.lex_state = 206, .external_lex_state = 4}, - [1899] = {.lex_state = 206, .external_lex_state = 4}, - [1900] = {.lex_state = 206}, - [1901] = {.lex_state = 206}, - [1902] = {.lex_state = 206, .external_lex_state = 4}, - [1903] = {.lex_state = 206, .external_lex_state = 4}, - [1904] = {.lex_state = 206, .external_lex_state = 4}, - [1905] = {.lex_state = 206}, - [1906] = {.lex_state = 206, .external_lex_state = 4}, - [1907] = {.lex_state = 206, .external_lex_state = 4}, - [1908] = {.lex_state = 35}, - [1909] = {.lex_state = 35}, - [1910] = {.lex_state = 206}, - [1911] = {.lex_state = 206, .external_lex_state = 4}, - [1912] = {.lex_state = 206, .external_lex_state = 4}, - [1913] = {.lex_state = 206, .external_lex_state = 4}, - [1914] = {.lex_state = 206, .external_lex_state = 4}, - [1915] = {.lex_state = 42}, - [1916] = {.lex_state = 206}, - [1917] = {.lex_state = 206}, - [1918] = {.lex_state = 206, .external_lex_state = 4}, - [1919] = {.lex_state = 206, .external_lex_state = 4}, - [1920] = {.lex_state = 206, .external_lex_state = 4}, - [1921] = {.lex_state = 3}, - [1922] = {.lex_state = 206}, - [1923] = {.lex_state = 206}, - [1924] = {.lex_state = 206}, - [1925] = {.lex_state = 41}, - [1926] = {.lex_state = 206}, - [1927] = {.lex_state = 35}, - [1928] = {.lex_state = 42}, - [1929] = {.lex_state = 35}, - [1930] = {.lex_state = 41}, - [1931] = {.lex_state = 42}, - [1932] = {.lex_state = 206}, - [1933] = {.lex_state = 206}, - [1934] = {.lex_state = 42}, - [1935] = {.lex_state = 41}, - [1936] = {.lex_state = 206, .external_lex_state = 5}, - [1937] = {.lex_state = 206}, - [1938] = {.lex_state = 206, .external_lex_state = 4}, - [1939] = {.lex_state = 35}, - [1940] = {.lex_state = 206, .external_lex_state = 4}, - [1941] = {.lex_state = 41}, - [1942] = {.lex_state = 42}, - [1943] = {.lex_state = 206, .external_lex_state = 4}, - [1944] = {.lex_state = 206}, - [1945] = {.lex_state = 206}, - [1946] = {.lex_state = 35}, - [1947] = {.lex_state = 206}, - [1948] = {.lex_state = 35}, - [1949] = {.lex_state = 41}, - [1950] = {.lex_state = 42}, - [1951] = {.lex_state = 206}, - [1952] = {.lex_state = 206}, - [1953] = {.lex_state = 206, .external_lex_state = 4}, - [1954] = {.lex_state = 206}, - [1955] = {.lex_state = 41}, - [1956] = {.lex_state = 206, .external_lex_state = 4}, - [1957] = {.lex_state = 206}, - [1958] = {.lex_state = 206}, - [1959] = {.lex_state = 206}, - [1960] = {.lex_state = 206}, - [1961] = {.lex_state = 3}, - [1962] = {.lex_state = 206}, - [1963] = {.lex_state = 39}, - [1964] = {.lex_state = 206, .external_lex_state = 4}, - [1965] = {.lex_state = 206, .external_lex_state = 4}, - [1966] = {.lex_state = 206, .external_lex_state = 4}, - [1967] = {.lex_state = 206, .external_lex_state = 4}, - [1968] = {.lex_state = 206, .external_lex_state = 4}, - [1969] = {.lex_state = 206, .external_lex_state = 4}, - [1970] = {.lex_state = 206}, - [1971] = {.lex_state = 206, .external_lex_state = 4}, - [1972] = {.lex_state = 35}, - [1973] = {.lex_state = 206}, - [1974] = {.lex_state = 206}, - [1975] = {.lex_state = 206}, - [1976] = {.lex_state = 206}, - [1977] = {.lex_state = 206}, - [1978] = {.lex_state = 206}, - [1979] = {.lex_state = 206}, - [1980] = {.lex_state = 206}, - [1981] = {.lex_state = 206}, - [1982] = {.lex_state = 31}, - [1983] = {.lex_state = 206}, - [1984] = {.lex_state = 206}, - [1985] = {.lex_state = 206}, - [1986] = {.lex_state = 206}, - [1987] = {.lex_state = 39}, - [1988] = {.lex_state = 206}, - [1989] = {.lex_state = 206}, - [1990] = {.lex_state = 206}, - [1991] = {.lex_state = 206}, - [1992] = {.lex_state = 206}, - [1993] = {.lex_state = 206}, - [1994] = {.lex_state = 206}, - [1995] = {.lex_state = 206}, - [1996] = {.lex_state = 206}, - [1997] = {.lex_state = 206}, - [1998] = {.lex_state = 35}, - [1999] = {.lex_state = 35, .external_lex_state = 4}, - [2000] = {.lex_state = 35, .external_lex_state = 4}, - [2001] = {.lex_state = 39}, - [2002] = {.lex_state = 31}, - [2003] = {.lex_state = 206}, - [2004] = {.lex_state = 206}, - [2005] = {.lex_state = 206, .external_lex_state = 4}, - [2006] = {.lex_state = 206}, - [2007] = {.lex_state = 206}, - [2008] = {.lex_state = 206, .external_lex_state = 4}, - [2009] = {.lex_state = 206}, - [2010] = {.lex_state = 206}, - [2011] = {.lex_state = 206}, - [2012] = {.lex_state = 206}, - [2013] = {.lex_state = 35}, - [2014] = {.lex_state = 206}, - [2015] = {.lex_state = 31}, - [2016] = {.lex_state = 206}, - [2017] = {.lex_state = 206}, - [2018] = {.lex_state = 206}, - [2019] = {.lex_state = 206}, - [2020] = {.lex_state = 31}, - [2021] = {.lex_state = 206}, - [2022] = {.lex_state = 39}, - [2023] = {.lex_state = 35}, - [2024] = {.lex_state = 206}, - [2025] = {.lex_state = 35}, - [2026] = {.lex_state = 35, .external_lex_state = 4}, - [2027] = {.lex_state = 35, .external_lex_state = 4}, - [2028] = {.lex_state = 206}, - [2029] = {.lex_state = 35}, - [2030] = {.lex_state = 206}, - [2031] = {.lex_state = 206}, - [2032] = {.lex_state = 206}, - [2033] = {.lex_state = 206}, - [2034] = {.lex_state = 206}, - [2035] = {.lex_state = 3}, - [2036] = {.lex_state = 35}, - [2037] = {.lex_state = 39}, - [2038] = {.lex_state = 35, .external_lex_state = 4}, - [2039] = {.lex_state = 206, .external_lex_state = 4}, - [2040] = {.lex_state = 206}, - [2041] = {.lex_state = 206}, - [2042] = {.lex_state = 206, .external_lex_state = 4}, - [2043] = {.lex_state = 206}, - [2044] = {.lex_state = 206, .external_lex_state = 4}, - [2045] = {.lex_state = 35, .external_lex_state = 4}, - [2046] = {.lex_state = 31}, - [2047] = {.lex_state = 206, .external_lex_state = 4}, - [2048] = {.lex_state = 35}, - [2049] = {.lex_state = 35}, - [2050] = {.lex_state = 35}, - [2051] = {.lex_state = 35}, - [2052] = {.lex_state = 35}, - [2053] = {.lex_state = 206}, - [2054] = {.lex_state = 206}, - [2055] = {.lex_state = 206}, - [2056] = {.lex_state = 206}, - [2057] = {.lex_state = 31}, - [2058] = {.lex_state = 206}, - [2059] = {.lex_state = 39}, - [2060] = {.lex_state = 35, .external_lex_state = 4}, - [2061] = {.lex_state = 35, .external_lex_state = 4}, - [2062] = {.lex_state = 206}, - [2063] = {.lex_state = 206}, - [2064] = {.lex_state = 206}, - [2065] = {.lex_state = 206, .external_lex_state = 4}, - [2066] = {.lex_state = 206, .external_lex_state = 4}, - [2067] = {.lex_state = 206}, - [2068] = {.lex_state = 206, .external_lex_state = 4}, - [2069] = {.lex_state = 39}, - [2070] = {.lex_state = 206}, - [2071] = {.lex_state = 35}, - [2072] = {.lex_state = 206}, - [2073] = {.lex_state = 206}, - [2074] = {.lex_state = 35}, - [2075] = {.lex_state = 206}, - [2076] = {.lex_state = 206, .external_lex_state = 4}, - [2077] = {.lex_state = 206}, - [2078] = {.lex_state = 35}, - [2079] = {.lex_state = 206}, - [2080] = {.lex_state = 206}, - [2081] = {.lex_state = 39}, - [2082] = {.lex_state = 206}, - [2083] = {.lex_state = 206, .external_lex_state = 4}, - [2084] = {.lex_state = 206, .external_lex_state = 4}, - [2085] = {.lex_state = 206}, - [2086] = {.lex_state = 206}, - [2087] = {.lex_state = 206}, - [2088] = {.lex_state = 206, .external_lex_state = 4}, - [2089] = {.lex_state = 35}, - [2090] = {.lex_state = 206}, - [2091] = {.lex_state = 206, .external_lex_state = 4}, - [2092] = {.lex_state = 206, .external_lex_state = 4}, - [2093] = {.lex_state = 35}, - [2094] = {.lex_state = 206, .external_lex_state = 4}, - [2095] = {.lex_state = 35, .external_lex_state = 4}, - [2096] = {.lex_state = 206, .external_lex_state = 4}, - [2097] = {.lex_state = 35, .external_lex_state = 4}, - [2098] = {.lex_state = 206}, - [2099] = {.lex_state = 206}, - [2100] = {.lex_state = 206}, - [2101] = {.lex_state = 206}, - [2102] = {.lex_state = 35}, - [2103] = {.lex_state = 206, .external_lex_state = 4}, - [2104] = {.lex_state = 35}, - [2105] = {.lex_state = 206, .external_lex_state = 4}, - [2106] = {.lex_state = 206}, - [2107] = {.lex_state = 206}, - [2108] = {.lex_state = 206}, - [2109] = {.lex_state = 35}, - [2110] = {.lex_state = 206}, - [2111] = {.lex_state = 206}, - [2112] = {.lex_state = 206}, - [2113] = {.lex_state = 206}, - [2114] = {.lex_state = 206, .external_lex_state = 4}, - [2115] = {.lex_state = 206}, - [2116] = {.lex_state = 206}, - [2117] = {.lex_state = 206}, - [2118] = {.lex_state = 206}, - [2119] = {.lex_state = 206}, - [2120] = {.lex_state = 206}, - [2121] = {.lex_state = 31}, - [2122] = {.lex_state = 206}, - [2123] = {.lex_state = 206}, - [2124] = {.lex_state = 206}, - [2125] = {.lex_state = 206, .external_lex_state = 4}, - [2126] = {.lex_state = 206}, - [2127] = {.lex_state = 206}, - [2128] = {.lex_state = 35}, - [2129] = {.lex_state = 206}, - [2130] = {.lex_state = 206}, - [2131] = {.lex_state = 206}, - [2132] = {.lex_state = 206}, - [2133] = {.lex_state = 206}, - [2134] = {.lex_state = 206}, - [2135] = {.lex_state = 206}, - [2136] = {.lex_state = 206}, - [2137] = {.lex_state = 206}, - [2138] = {.lex_state = 206}, - [2139] = {.lex_state = 206}, - [2140] = {.lex_state = 206}, - [2141] = {.lex_state = 206}, - [2142] = {.lex_state = 206}, - [2143] = {.lex_state = 206, .external_lex_state = 4}, - [2144] = {.lex_state = 206}, - [2145] = {.lex_state = 206}, - [2146] = {.lex_state = 206}, - [2147] = {.lex_state = 206}, - [2148] = {.lex_state = 206}, - [2149] = {.lex_state = 206}, - [2150] = {.lex_state = 206}, - [2151] = {.lex_state = 206}, - [2152] = {.lex_state = 206}, - [2153] = {.lex_state = 206}, - [2154] = {.lex_state = 206}, - [2155] = {.lex_state = 206}, - [2156] = {.lex_state = 206}, - [2157] = {.lex_state = 206}, - [2158] = {.lex_state = 206}, - [2159] = {.lex_state = 206}, - [2160] = {.lex_state = 206}, - [2161] = {.lex_state = 206, .external_lex_state = 4}, - [2162] = {.lex_state = 206}, - [2163] = {.lex_state = 206}, - [2164] = {.lex_state = 206}, - [2165] = {.lex_state = 206}, - [2166] = {.lex_state = 206}, - [2167] = {.lex_state = 206}, - [2168] = {.lex_state = 206}, - [2169] = {.lex_state = 35}, - [2170] = {.lex_state = 206}, - [2171] = {.lex_state = 206, .external_lex_state = 4}, - [2172] = {.lex_state = 206}, - [2173] = {.lex_state = 206}, - [2174] = {.lex_state = 35}, - [2175] = {.lex_state = 206}, - [2176] = {.lex_state = 206}, - [2177] = {.lex_state = 206}, - [2178] = {.lex_state = 206}, - [2179] = {.lex_state = 206}, - [2180] = {.lex_state = 206}, - [2181] = {.lex_state = 206}, - [2182] = {.lex_state = 206, .external_lex_state = 4}, - [2183] = {.lex_state = 206, .external_lex_state = 4}, - [2184] = {.lex_state = 206}, - [2185] = {.lex_state = 206, .external_lex_state = 4}, - [2186] = {.lex_state = 206}, - [2187] = {.lex_state = 206, .external_lex_state = 4}, - [2188] = {.lex_state = 206}, - [2189] = {.lex_state = 206}, - [2190] = {.lex_state = 206}, - [2191] = {.lex_state = 206}, - [2192] = {.lex_state = 206}, - [2193] = {.lex_state = 206}, - [2194] = {.lex_state = 206}, - [2195] = {.lex_state = 206}, - [2196] = {.lex_state = 35}, - [2197] = {.lex_state = 206}, - [2198] = {.lex_state = 206}, - [2199] = {.lex_state = 206}, - [2200] = {.lex_state = 206}, - [2201] = {.lex_state = 206}, - [2202] = {.lex_state = 206}, - [2203] = {.lex_state = 206}, - [2204] = {.lex_state = 206, .external_lex_state = 4}, - [2205] = {.lex_state = 206}, - [2206] = {.lex_state = 206}, - [2207] = {.lex_state = 206, .external_lex_state = 4}, - [2208] = {.lex_state = 206, .external_lex_state = 4}, - [2209] = {.lex_state = 206, .external_lex_state = 4}, - [2210] = {.lex_state = 206}, - [2211] = {.lex_state = 206}, - [2212] = {.lex_state = 206}, - [2213] = {.lex_state = 206}, - [2214] = {.lex_state = 206}, - [2215] = {.lex_state = 206}, - [2216] = {.lex_state = 206}, - [2217] = {.lex_state = 206}, - [2218] = {.lex_state = 206}, - [2219] = {.lex_state = 206}, - [2220] = {.lex_state = 35}, - [2221] = {.lex_state = 39}, - [2222] = {.lex_state = 39}, - [2223] = {.lex_state = 206}, - [2224] = {.lex_state = 206}, - [2225] = {.lex_state = 206}, - [2226] = {.lex_state = 206}, - [2227] = {.lex_state = 35}, - [2228] = {.lex_state = 206}, - [2229] = {.lex_state = 206}, - [2230] = {.lex_state = 206}, - [2231] = {.lex_state = 206}, - [2232] = {.lex_state = 39}, - [2233] = {.lex_state = 206}, - [2234] = {.lex_state = 39}, - [2235] = {.lex_state = 206}, - [2236] = {.lex_state = 39}, - [2237] = {.lex_state = 51}, - [2238] = {.lex_state = 206}, - [2239] = {.lex_state = 206}, - [2240] = {.lex_state = 206}, - [2241] = {.lex_state = 206}, - [2242] = {.lex_state = 35}, - [2243] = {.lex_state = 206}, - [2244] = {.lex_state = 206}, - [2245] = {.lex_state = 206, .external_lex_state = 4}, - [2246] = {.lex_state = 206}, - [2247] = {.lex_state = 206}, - [2248] = {.lex_state = 206}, - [2249] = {.lex_state = 206}, - [2250] = {.lex_state = 206}, - [2251] = {.lex_state = 206, .external_lex_state = 4}, - [2252] = {.lex_state = 206}, - [2253] = {.lex_state = 206}, - [2254] = {.lex_state = 206}, - [2255] = {.lex_state = 206}, - [2256] = {.lex_state = 206, .external_lex_state = 4}, - [2257] = {.lex_state = 206, .external_lex_state = 4}, - [2258] = {.lex_state = 206}, - [2259] = {.lex_state = 206}, - [2260] = {.lex_state = 206}, - [2261] = {.lex_state = 206, .external_lex_state = 4}, - [2262] = {.lex_state = 206, .external_lex_state = 4}, - [2263] = {.lex_state = 206}, - [2264] = {.lex_state = 206}, - [2265] = {.lex_state = 206}, - [2266] = {.lex_state = 206}, - [2267] = {.lex_state = 51}, - [2268] = {.lex_state = 206, .external_lex_state = 4}, - [2269] = {.lex_state = 206}, - [2270] = {.lex_state = 35}, - [2271] = {.lex_state = 206}, - [2272] = {.lex_state = 206}, - [2273] = {.lex_state = 206}, - [2274] = {.lex_state = 206}, - [2275] = {.lex_state = 206}, - [2276] = {.lex_state = 206}, - [2277] = {.lex_state = 206}, - [2278] = {.lex_state = 206, .external_lex_state = 4}, - [2279] = {.lex_state = 206, .external_lex_state = 4}, - [2280] = {.lex_state = 206, .external_lex_state = 4}, - [2281] = {.lex_state = 206}, - [2282] = {.lex_state = 206, .external_lex_state = 4}, - [2283] = {.lex_state = 206}, - [2284] = {.lex_state = 206, .external_lex_state = 4}, - [2285] = {.lex_state = 206, .external_lex_state = 4}, - [2286] = {.lex_state = 206}, - [2287] = {.lex_state = 206, .external_lex_state = 4}, - [2288] = {.lex_state = 206}, - [2289] = {.lex_state = 206}, - [2290] = {.lex_state = 206}, - [2291] = {.lex_state = 206}, - [2292] = {.lex_state = 206}, - [2293] = {.lex_state = 206, .external_lex_state = 4}, - [2294] = {.lex_state = 206, .external_lex_state = 4}, - [2295] = {.lex_state = 206}, - [2296] = {.lex_state = 206}, - [2297] = {.lex_state = 206, .external_lex_state = 4}, - [2298] = {.lex_state = 206, .external_lex_state = 4}, - [2299] = {.lex_state = 206, .external_lex_state = 4}, - [2300] = {.lex_state = 206}, - [2301] = {.lex_state = 206, .external_lex_state = 4}, - [2302] = {.lex_state = 206}, - [2303] = {.lex_state = 206, .external_lex_state = 4}, - [2304] = {.lex_state = 206}, - [2305] = {.lex_state = 206}, - [2306] = {.lex_state = 206}, - [2307] = {.lex_state = 206, .external_lex_state = 4}, - [2308] = {.lex_state = 206}, - [2309] = {.lex_state = 206}, - [2310] = {.lex_state = 206}, - [2311] = {.lex_state = 206}, - [2312] = {.lex_state = 206}, - [2313] = {.lex_state = 206}, - [2314] = {.lex_state = 206}, - [2315] = {.lex_state = 206}, - [2316] = {.lex_state = 206}, - [2317] = {.lex_state = 206}, - [2318] = {.lex_state = 206}, - [2319] = {.lex_state = 206}, - [2320] = {.lex_state = 206, .external_lex_state = 4}, - [2321] = {.lex_state = 206, .external_lex_state = 4}, - [2322] = {.lex_state = 206}, - [2323] = {.lex_state = 206, .external_lex_state = 4}, - [2324] = {.lex_state = 206, .external_lex_state = 4}, - [2325] = {.lex_state = 206, .external_lex_state = 4}, - [2326] = {.lex_state = 206}, - [2327] = {.lex_state = 39}, - [2328] = {.lex_state = 39}, - [2329] = {.lex_state = 206}, - [2330] = {.lex_state = 206}, - [2331] = {.lex_state = 206}, - [2332] = {.lex_state = 206, .external_lex_state = 4}, - [2333] = {.lex_state = 206}, - [2334] = {.lex_state = 206}, - [2335] = {.lex_state = 206}, - [2336] = {.lex_state = 206}, - [2337] = {.lex_state = 206}, - [2338] = {.lex_state = 206}, - [2339] = {.lex_state = 206}, - [2340] = {.lex_state = 206}, - [2341] = {.lex_state = 206}, - [2342] = {.lex_state = 206}, - [2343] = {.lex_state = 206}, - [2344] = {.lex_state = 206}, - [2345] = {.lex_state = 206}, - [2346] = {.lex_state = 206}, - [2347] = {.lex_state = 39}, - [2348] = {.lex_state = 206}, - [2349] = {.lex_state = 39}, - [2350] = {.lex_state = 206}, - [2351] = {.lex_state = 206}, - [2352] = {.lex_state = 206}, - [2353] = {.lex_state = 206}, - [2354] = {.lex_state = 206}, - [2355] = {.lex_state = 206}, - [2356] = {.lex_state = 206}, - [2357] = {.lex_state = 206}, - [2358] = {.lex_state = 206}, - [2359] = {.lex_state = 206}, - [2360] = {.lex_state = 206}, - [2361] = {.lex_state = 35}, - [2362] = {.lex_state = 206}, - [2363] = {.lex_state = 206}, - [2364] = {.lex_state = 206}, - [2365] = {.lex_state = 206}, - [2366] = {.lex_state = 206, .external_lex_state = 4}, - [2367] = {.lex_state = 206}, - [2368] = {.lex_state = 206}, - [2369] = {.lex_state = 206}, - [2370] = {.lex_state = 206}, - [2371] = {.lex_state = 35}, - [2372] = {.lex_state = 206}, - [2373] = {.lex_state = 3}, - [2374] = {.lex_state = 206}, - [2375] = {.lex_state = 206}, - [2376] = {.lex_state = 206}, - [2377] = {.lex_state = 206}, - [2378] = {.lex_state = 206}, - [2379] = {.lex_state = 206}, - [2380] = {.lex_state = 206, .external_lex_state = 4}, - [2381] = {.lex_state = 206}, - [2382] = {.lex_state = 206}, - [2383] = {.lex_state = 206}, - [2384] = {.lex_state = 206}, - [2385] = {.lex_state = 206, .external_lex_state = 4}, - [2386] = {.lex_state = 206}, - [2387] = {.lex_state = 206}, - [2388] = {.lex_state = 206}, - [2389] = {.lex_state = 206, .external_lex_state = 4}, - [2390] = {.lex_state = 206}, - [2391] = {.lex_state = 206}, - [2392] = {.lex_state = 206}, - [2393] = {.lex_state = 206, .external_lex_state = 4}, - [2394] = {.lex_state = 35}, - [2395] = {.lex_state = 206}, - [2396] = {.lex_state = 206}, - [2397] = {.lex_state = 206}, - [2398] = {.lex_state = 206, .external_lex_state = 4}, - [2399] = {.lex_state = 206}, - [2400] = {.lex_state = 206}, - [2401] = {.lex_state = 206}, - [2402] = {.lex_state = 206}, - [2403] = {.lex_state = 206}, - [2404] = {.lex_state = 206}, - [2405] = {.lex_state = 206}, - [2406] = {.lex_state = 206}, - [2407] = {.lex_state = 206, .external_lex_state = 4}, - [2408] = {.lex_state = 206, .external_lex_state = 4}, - [2409] = {.lex_state = 206}, - [2410] = {.lex_state = 206, .external_lex_state = 4}, - [2411] = {.lex_state = 206}, - [2412] = {.lex_state = 206, .external_lex_state = 4}, - [2413] = {.lex_state = 206}, - [2414] = {.lex_state = 206}, - [2415] = {.lex_state = 206}, - [2416] = {.lex_state = 206}, - [2417] = {.lex_state = 206}, - [2418] = {.lex_state = 206}, - [2419] = {.lex_state = 206}, - [2420] = {.lex_state = 206}, - [2421] = {.lex_state = 206}, - [2422] = {.lex_state = 206, .external_lex_state = 4}, - [2423] = {.lex_state = 206}, - [2424] = {.lex_state = 206}, - [2425] = {.lex_state = 206, .external_lex_state = 4}, - [2426] = {.lex_state = 206, .external_lex_state = 4}, - [2427] = {.lex_state = 206, .external_lex_state = 4}, - [2428] = {.lex_state = 206}, - [2429] = {.lex_state = 206}, - [2430] = {.lex_state = 206}, - [2431] = {.lex_state = 206}, - [2432] = {.lex_state = 206}, - [2433] = {.lex_state = 206}, - [2434] = {.lex_state = 206}, - [2435] = {.lex_state = 206}, - [2436] = {.lex_state = 206}, - [2437] = {.lex_state = 206}, - [2438] = {.lex_state = 206}, - [2439] = {.lex_state = 206}, - [2440] = {.lex_state = 206}, - [2441] = {.lex_state = 206}, - [2442] = {.lex_state = 206}, - [2443] = {.lex_state = 206}, - [2444] = {.lex_state = 206}, - [2445] = {.lex_state = 206}, - [2446] = {.lex_state = 206}, - [2447] = {.lex_state = 206}, - [2448] = {.lex_state = 206}, - [2449] = {.lex_state = 206}, - [2450] = {.lex_state = 206}, - [2451] = {.lex_state = 206}, - [2452] = {.lex_state = 206}, - [2453] = {.lex_state = 206}, - [2454] = {.lex_state = 206}, - [2455] = {.lex_state = 206}, - [2456] = {.lex_state = 206}, - [2457] = {.lex_state = 206}, - [2458] = {.lex_state = 206}, - [2459] = {.lex_state = 206}, - [2460] = {.lex_state = 206}, - [2461] = {.lex_state = 206}, - [2462] = {.lex_state = 206}, - [2463] = {.lex_state = 206}, - [2464] = {.lex_state = 206}, - [2465] = {.lex_state = 206}, - [2466] = {.lex_state = 206}, - [2467] = {.lex_state = 206}, - [2468] = {.lex_state = 206, .external_lex_state = 4}, - [2469] = {.lex_state = 39}, - [2470] = {.lex_state = 206}, - [2471] = {.lex_state = 206}, - [2472] = {.lex_state = 206}, - [2473] = {.lex_state = 206}, - [2474] = {.lex_state = 206}, - [2475] = {.lex_state = 206}, - [2476] = {.lex_state = 206}, - [2477] = {.lex_state = 206, .external_lex_state = 4}, - [2478] = {.lex_state = 206, .external_lex_state = 4}, - [2479] = {.lex_state = 206}, - [2480] = {.lex_state = 206}, - [2481] = {.lex_state = 206}, - [2482] = {.lex_state = 206}, - [2483] = {.lex_state = 206}, - [2484] = {.lex_state = 206}, - [2485] = {.lex_state = 206}, - [2486] = {.lex_state = 206}, - [2487] = {.lex_state = 206}, - [2488] = {.lex_state = 206}, - [2489] = {.lex_state = 206}, - [2490] = {.lex_state = 206}, - [2491] = {.lex_state = 206}, - [2492] = {.lex_state = 206}, - [2493] = {.lex_state = 206}, - [2494] = {.lex_state = 206, .external_lex_state = 4}, - [2495] = {.lex_state = 206, .external_lex_state = 4}, - [2496] = {.lex_state = 206}, - [2497] = {.lex_state = 206}, - [2498] = {.lex_state = 206, .external_lex_state = 4}, - [2499] = {.lex_state = 206}, - [2500] = {.lex_state = 206}, - [2501] = {.lex_state = 206}, - [2502] = {.lex_state = 206}, - [2503] = {.lex_state = 206}, - [2504] = {.lex_state = 206}, - [2505] = {.lex_state = 206}, - [2506] = {.lex_state = 206}, - [2507] = {.lex_state = 206}, - [2508] = {.lex_state = 206}, - [2509] = {.lex_state = 206}, - [2510] = {.lex_state = 206}, - [2511] = {.lex_state = 206}, - [2512] = {.lex_state = 206}, - [2513] = {.lex_state = 206}, - [2514] = {.lex_state = 39}, - [2515] = {.lex_state = 206}, - [2516] = {.lex_state = 206}, - [2517] = {.lex_state = 206, .external_lex_state = 4}, - [2518] = {.lex_state = 206}, - [2519] = {.lex_state = 206}, - [2520] = {.lex_state = 206}, - [2521] = {.lex_state = 206}, - [2522] = {.lex_state = 206}, - [2523] = {.lex_state = 206}, - [2524] = {.lex_state = 206, .external_lex_state = 4}, - [2525] = {.lex_state = 206}, - [2526] = {.lex_state = 206}, - [2527] = {.lex_state = 206}, - [2528] = {.lex_state = 206}, - [2529] = {.lex_state = 206}, - [2530] = {.lex_state = 206}, - [2531] = {.lex_state = 206}, - [2532] = {.lex_state = 206}, - [2533] = {.lex_state = 206}, - [2534] = {.lex_state = 206}, - [2535] = {.lex_state = 206}, - [2536] = {.lex_state = 206}, - [2537] = {.lex_state = 206}, - [2538] = {.lex_state = 206}, - [2539] = {.lex_state = 206}, - [2540] = {.lex_state = 206}, - [2541] = {.lex_state = 206}, - [2542] = {.lex_state = 206}, - [2543] = {.lex_state = 206}, - [2544] = {.lex_state = 206}, - [2545] = {.lex_state = 206}, - [2546] = {.lex_state = 206}, - [2547] = {.lex_state = 206}, - [2548] = {.lex_state = 206}, - [2549] = {.lex_state = 206}, - [2550] = {.lex_state = 206}, - [2551] = {.lex_state = 206}, - [2552] = {.lex_state = 206}, - [2553] = {.lex_state = 206}, - [2554] = {.lex_state = 206}, - [2555] = {.lex_state = 206}, - [2556] = {.lex_state = 206}, - [2557] = {.lex_state = 206}, - [2558] = {.lex_state = 206}, - [2559] = {.lex_state = 206}, - [2560] = {.lex_state = 206}, - [2561] = {.lex_state = 206}, - [2562] = {.lex_state = 206}, - [2563] = {.lex_state = 206}, - [2564] = {.lex_state = 206}, - [2565] = {.lex_state = 206}, - [2566] = {.lex_state = 35}, - [2567] = {.lex_state = 206}, - [2568] = {.lex_state = 206}, - [2569] = {.lex_state = 206}, - [2570] = {.lex_state = 206}, - [2571] = {.lex_state = 206}, - [2572] = {.lex_state = 206}, - [2573] = {.lex_state = 206}, - [2574] = {.lex_state = 206}, - [2575] = {.lex_state = 206}, - [2576] = {.lex_state = 206}, - [2577] = {.lex_state = 206}, - [2578] = {.lex_state = 206}, - [2579] = {.lex_state = 206}, - [2580] = {.lex_state = 206}, - [2581] = {.lex_state = 206}, - [2582] = {.lex_state = 206}, - [2583] = {.lex_state = 206}, - [2584] = {.lex_state = 206}, - [2585] = {.lex_state = 206}, - [2586] = {.lex_state = 206}, - [2587] = {.lex_state = 206}, - [2588] = {.lex_state = 206}, - [2589] = {.lex_state = 206}, - [2590] = {.lex_state = 206}, - [2591] = {.lex_state = 206}, - [2592] = {.lex_state = 206}, - [2593] = {.lex_state = 206}, - [2594] = {.lex_state = 206}, - [2595] = {.lex_state = 206}, - [2596] = {.lex_state = 206}, - [2597] = {.lex_state = 206}, - [2598] = {.lex_state = 206}, - [2599] = {.lex_state = 206}, - [2600] = {.lex_state = 206}, - [2601] = {.lex_state = 206}, - [2602] = {.lex_state = 206}, - [2603] = {.lex_state = 206}, - [2604] = {.lex_state = 206}, - [2605] = {.lex_state = 206}, - [2606] = {.lex_state = 206}, - [2607] = {.lex_state = 206}, - [2608] = {.lex_state = 206}, - [2609] = {.lex_state = 206}, - [2610] = {.lex_state = 206}, - [2611] = {.lex_state = 206}, - [2612] = {.lex_state = 206}, - [2613] = {.lex_state = 206}, - [2614] = {.lex_state = 206}, - [2615] = {.lex_state = 206}, - [2616] = {.lex_state = 206}, - [2617] = {.lex_state = 206}, - [2618] = {.lex_state = 206}, - [2619] = {.lex_state = 206}, - [2620] = {.lex_state = 206}, - [2621] = {.lex_state = 206}, - [2622] = {.lex_state = 206}, - [2623] = {.lex_state = 206}, - [2624] = {.lex_state = 206}, - [2625] = {.lex_state = 206}, - [2626] = {.lex_state = 206}, - [2627] = {.lex_state = 206, .external_lex_state = 4}, - [2628] = {.lex_state = 206}, - [2629] = {.lex_state = 206}, - [2630] = {.lex_state = 206}, - [2631] = {.lex_state = 206}, - [2632] = {.lex_state = 206}, - [2633] = {.lex_state = 206}, - [2634] = {.lex_state = 206}, - [2635] = {.lex_state = 206}, - [2636] = {.lex_state = 206}, - [2637] = {.lex_state = 206}, - [2638] = {.lex_state = 206}, - [2639] = {.lex_state = 206}, - [2640] = {.lex_state = 206}, - [2641] = {.lex_state = 206}, - [2642] = {.lex_state = 206}, - [2643] = {.lex_state = 206}, - [2644] = {.lex_state = 206}, - [2645] = {.lex_state = 206}, - [2646] = {.lex_state = 206}, - [2647] = {.lex_state = 206}, - [2648] = {.lex_state = 206}, - [2649] = {.lex_state = 206}, - [2650] = {.lex_state = 206}, - [2651] = {.lex_state = 206}, - [2652] = {.lex_state = 4}, - [2653] = {.lex_state = 206}, - [2654] = {.lex_state = 35}, - [2655] = {.lex_state = 35}, - [2656] = {.lex_state = 206}, - [2657] = {.lex_state = 206}, - [2658] = {.lex_state = 35}, - [2659] = {.lex_state = 206}, - [2660] = {.lex_state = 4}, - [2661] = {.lex_state = 39}, - [2662] = {.lex_state = 206}, - [2663] = {.lex_state = 206}, - [2664] = {.lex_state = 35}, - [2665] = {.lex_state = 35}, - [2666] = {.lex_state = 206}, - [2667] = {.lex_state = 35}, - [2668] = {.lex_state = 206}, - [2669] = {.lex_state = 35}, - [2670] = {.lex_state = 206}, - [2671] = {.lex_state = 206}, - [2672] = {.lex_state = 4}, - [2673] = {.lex_state = 206}, - [2674] = {.lex_state = 206}, - [2675] = {.lex_state = 31}, - [2676] = {.lex_state = 206}, - [2677] = {.lex_state = 206}, - [2678] = {.lex_state = 206}, - [2679] = {.lex_state = 206}, - [2680] = {.lex_state = 206}, - [2681] = {.lex_state = 206}, - [2682] = {.lex_state = 35}, - [2683] = {.lex_state = 206}, - [2684] = {.lex_state = 206}, - [2685] = {.lex_state = 4}, - [2686] = {.lex_state = 206}, - [2687] = {.lex_state = 206}, - [2688] = {.lex_state = 206}, - [2689] = {.lex_state = 206}, - [2690] = {.lex_state = 206}, - [2691] = {.lex_state = 206}, - [2692] = {.lex_state = 35}, - [2693] = {.lex_state = 206}, - [2694] = {.lex_state = 206}, - [2695] = {.lex_state = 206}, - [2696] = {.lex_state = 206}, - [2697] = {.lex_state = 206}, - [2698] = {.lex_state = 206}, - [2699] = {.lex_state = 206}, - [2700] = {.lex_state = 206}, - [2701] = {.lex_state = 206}, - [2702] = {.lex_state = 206}, - [2703] = {.lex_state = 206}, - [2704] = {.lex_state = 206}, - [2705] = {.lex_state = 206}, - [2706] = {.lex_state = 39}, - [2707] = {.lex_state = 39}, - [2708] = {.lex_state = 206}, - [2709] = {.lex_state = 206}, - [2710] = {.lex_state = 206}, - [2711] = {.lex_state = 35}, - [2712] = {.lex_state = 206}, - [2713] = {.lex_state = 35}, - [2714] = {.lex_state = 206}, - [2715] = {.lex_state = 39}, - [2716] = {.lex_state = 35}, - [2717] = {.lex_state = 206}, - [2718] = {.lex_state = 39}, - [2719] = {.lex_state = 206}, - [2720] = {.lex_state = 35}, - [2721] = {.lex_state = 206}, - [2722] = {.lex_state = 35}, - [2723] = {.lex_state = 206}, - [2724] = {.lex_state = 39}, - [2725] = {.lex_state = 206}, - [2726] = {.lex_state = 206}, - [2727] = {.lex_state = 206}, - [2728] = {.lex_state = 206}, - [2729] = {.lex_state = 206}, - [2730] = {.lex_state = 206}, - [2731] = {.lex_state = 206}, - [2732] = {.lex_state = 35}, - [2733] = {.lex_state = 206}, - [2734] = {.lex_state = 206}, - [2735] = {.lex_state = 39}, - [2736] = {.lex_state = 206}, - [2737] = {.lex_state = 206}, - [2738] = {.lex_state = 206}, - [2739] = {.lex_state = 206}, - [2740] = {.lex_state = 206}, - [2741] = {.lex_state = 39}, - [2742] = {.lex_state = 39}, - [2743] = {.lex_state = 206}, - [2744] = {.lex_state = 35}, - [2745] = {.lex_state = 206}, - [2746] = {.lex_state = 35}, - [2747] = {.lex_state = 35}, - [2748] = {.lex_state = 39}, - [2749] = {.lex_state = 35}, - [2750] = {.lex_state = 35}, - [2751] = {.lex_state = 39}, - [2752] = {.lex_state = 35}, - [2753] = {.lex_state = 35}, - [2754] = {.lex_state = 206}, - [2755] = {.lex_state = 206}, - [2756] = {.lex_state = 206}, - [2757] = {.lex_state = 206}, - [2758] = {.lex_state = 39}, - [2759] = {.lex_state = 206}, - [2760] = {.lex_state = 35}, - [2761] = {.lex_state = 206}, - [2762] = {.lex_state = 35}, - [2763] = {.lex_state = 206}, - [2764] = {.lex_state = 206}, - [2765] = {.lex_state = 206}, - [2766] = {.lex_state = 206}, - [2767] = {.lex_state = 206}, - [2768] = {.lex_state = 206}, - [2769] = {.lex_state = 39}, - [2770] = {.lex_state = 39}, - [2771] = {.lex_state = 35}, - [2772] = {.lex_state = 206}, - [2773] = {.lex_state = 35}, - [2774] = {.lex_state = 206}, - [2775] = {.lex_state = 35}, - [2776] = {.lex_state = 31}, - [2777] = {.lex_state = 206}, - [2778] = {.lex_state = 206}, - [2779] = {.lex_state = 206}, - [2780] = {.lex_state = 206}, -}; - -enum { - ts_external_token__automatic_semicolon = 0, - ts_external_token__template_chars = 1, - ts_external_token__ternary_qmark = 2, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, - [ts_external_token__template_chars] = sym__template_chars, - [ts_external_token__ternary_qmark] = sym__ternary_qmark, -}; - -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token__template_chars] = true, - [ts_external_token__ternary_qmark] = true, - }, - [2] = { - [ts_external_token__ternary_qmark] = true, - }, - [3] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token__ternary_qmark] = true, - }, - [4] = { - [ts_external_token__automatic_semicolon] = true, - }, - [5] = { - [ts_external_token__template_chars] = true, - }, + [1] = {.lex_state = 197, .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}, + [5] = {.lex_state = 13, .external_lex_state = 2}, + [6] = {.lex_state = 13, .external_lex_state = 2}, + [7] = {.lex_state = 13, .external_lex_state = 2}, + [8] = {.lex_state = 13, .external_lex_state = 2}, + [9] = {.lex_state = 13, .external_lex_state = 2}, + [10] = {.lex_state = 19, .external_lex_state = 2}, + [11] = {.lex_state = 19, .external_lex_state = 2}, + [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}, + [119] = {.lex_state = 7, .external_lex_state = 3}, + [120] = {.lex_state = 7, .external_lex_state = 4}, + [121] = {.lex_state = 8, .external_lex_state = 4}, + [122] = {.lex_state = 8, .external_lex_state = 3}, + [123] = {.lex_state = 7, .external_lex_state = 3}, + [124] = {.lex_state = 12, .external_lex_state = 2}, + [125] = {.lex_state = 12, .external_lex_state = 2}, + [126] = {.lex_state = 12, .external_lex_state = 2}, + [127] = {.lex_state = 12, .external_lex_state = 2}, + [128] = {.lex_state = 12, .external_lex_state = 2}, + [129] = {.lex_state = 12, .external_lex_state = 2}, + [130] = {.lex_state = 12, .external_lex_state = 2}, + [131] = {.lex_state = 12, .external_lex_state = 2}, + [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}, + [136] = {.lex_state = 17, .external_lex_state = 2}, + [137] = {.lex_state = 17, .external_lex_state = 2}, + [138] = {.lex_state = 17, .external_lex_state = 2}, + [139] = {.lex_state = 17, .external_lex_state = 2}, + [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}, + [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}, + [151] = {.lex_state = 10, .external_lex_state = 4}, + [152] = {.lex_state = 10, .external_lex_state = 4}, + [153] = {.lex_state = 10, .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}, + [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}, + [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}, + [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}, + [172] = {.lex_state = 9, .external_lex_state = 4}, + [173] = {.lex_state = 9, .external_lex_state = 4}, + [174] = {.lex_state = 196, .external_lex_state = 4}, + [175] = {.lex_state = 9, .external_lex_state = 4}, + [176] = {.lex_state = 196, .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}, + [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}, + [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}, + [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}, + [222] = {.lex_state = 12, .external_lex_state = 2}, + [223] = {.lex_state = 12, .external_lex_state = 2}, + [224] = {.lex_state = 12, .external_lex_state = 2}, + [225] = {.lex_state = 12, .external_lex_state = 2}, + [226] = {.lex_state = 12, .external_lex_state = 2}, + [227] = {.lex_state = 12, .external_lex_state = 2}, + [228] = {.lex_state = 12, .external_lex_state = 2}, + [229] = {.lex_state = 12, .external_lex_state = 2}, + [230] = {.lex_state = 12, .external_lex_state = 2}, + [231] = {.lex_state = 12, .external_lex_state = 2}, + [232] = {.lex_state = 12, .external_lex_state = 2}, + [233] = {.lex_state = 12, .external_lex_state = 5}, + [234] = {.lex_state = 12, .external_lex_state = 5}, + [235] = {.lex_state = 12, .external_lex_state = 5}, + [236] = {.lex_state = 12, .external_lex_state = 5}, + [237] = {.lex_state = 12, .external_lex_state = 5}, + [238] = {.lex_state = 12, .external_lex_state = 2}, + [239] = {.lex_state = 12, .external_lex_state = 2}, + [240] = {.lex_state = 12, .external_lex_state = 2}, + [241] = {.lex_state = 12, .external_lex_state = 2}, + [242] = {.lex_state = 12, .external_lex_state = 2}, + [243] = {.lex_state = 17, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [259] = {.lex_state = 12, .external_lex_state = 2}, + [260] = {.lex_state = 12, .external_lex_state = 2}, + [261] = {.lex_state = 12, .external_lex_state = 2}, + [262] = {.lex_state = 12, .external_lex_state = 2}, + [263] = {.lex_state = 12, .external_lex_state = 2}, + [264] = {.lex_state = 12, .external_lex_state = 2}, + [265] = {.lex_state = 12, .external_lex_state = 2}, + [266] = {.lex_state = 12, .external_lex_state = 2}, + [267] = {.lex_state = 12, .external_lex_state = 2}, + [268] = {.lex_state = 12, .external_lex_state = 2}, + [269] = {.lex_state = 12, .external_lex_state = 2}, + [270] = {.lex_state = 12, .external_lex_state = 2}, + [271] = {.lex_state = 12, .external_lex_state = 2}, + [272] = {.lex_state = 12, .external_lex_state = 2}, + [273] = {.lex_state = 12, .external_lex_state = 2}, + [274] = {.lex_state = 12, .external_lex_state = 2}, + [275] = {.lex_state = 12, .external_lex_state = 2}, + [276] = {.lex_state = 12, .external_lex_state = 2}, + [277] = {.lex_state = 12, .external_lex_state = 2}, + [278] = {.lex_state = 12, .external_lex_state = 2}, + [279] = {.lex_state = 12, .external_lex_state = 2}, + [280] = {.lex_state = 12, .external_lex_state = 2}, + [281] = {.lex_state = 12, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [295] = {.lex_state = 12, .external_lex_state = 2}, + [296] = {.lex_state = 12, .external_lex_state = 2}, + [297] = {.lex_state = 12, .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}, + [301] = {.lex_state = 12, .external_lex_state = 2}, + [302] = {.lex_state = 12, .external_lex_state = 2}, + [303] = {.lex_state = 12, .external_lex_state = 2}, + [304] = {.lex_state = 12, .external_lex_state = 2}, + [305] = {.lex_state = 12, .external_lex_state = 2}, + [306] = {.lex_state = 12, .external_lex_state = 2}, + [307] = {.lex_state = 12, .external_lex_state = 2}, + [308] = {.lex_state = 12, .external_lex_state = 2}, + [309] = {.lex_state = 12, .external_lex_state = 2}, + [310] = {.lex_state = 12, .external_lex_state = 2}, + [311] = {.lex_state = 12, .external_lex_state = 2}, + [312] = {.lex_state = 12, .external_lex_state = 2}, + [313] = {.lex_state = 12, .external_lex_state = 2}, + [314] = {.lex_state = 12, .external_lex_state = 2}, + [315] = {.lex_state = 12, .external_lex_state = 2}, + [316] = {.lex_state = 12, .external_lex_state = 2}, + [317] = {.lex_state = 12, .external_lex_state = 2}, + [318] = {.lex_state = 12, .external_lex_state = 2}, + [319] = {.lex_state = 12, .external_lex_state = 2}, + [320] = {.lex_state = 12, .external_lex_state = 2}, + [321] = {.lex_state = 12, .external_lex_state = 2}, + [322] = {.lex_state = 12, .external_lex_state = 2}, + [323] = {.lex_state = 12, .external_lex_state = 2}, + [324] = {.lex_state = 12, .external_lex_state = 2}, + [325] = {.lex_state = 12, .external_lex_state = 2}, + [326] = {.lex_state = 12, .external_lex_state = 2}, + [327] = {.lex_state = 12, .external_lex_state = 2}, + [328] = {.lex_state = 12, .external_lex_state = 2}, + [329] = {.lex_state = 12, .external_lex_state = 2}, + [330] = {.lex_state = 12, .external_lex_state = 2}, + [331] = {.lex_state = 12, .external_lex_state = 2}, + [332] = {.lex_state = 12, .external_lex_state = 2}, + [333] = {.lex_state = 12, .external_lex_state = 2}, + [334] = {.lex_state = 12, .external_lex_state = 2}, + [335] = {.lex_state = 12, .external_lex_state = 2}, + [336] = {.lex_state = 12, .external_lex_state = 2}, + [337] = {.lex_state = 12, .external_lex_state = 2}, + [338] = {.lex_state = 12, .external_lex_state = 2}, + [339] = {.lex_state = 12, .external_lex_state = 2}, + [340] = {.lex_state = 12, .external_lex_state = 2}, + [341] = {.lex_state = 12, .external_lex_state = 2}, + [342] = {.lex_state = 12, .external_lex_state = 2}, + [343] = {.lex_state = 12, .external_lex_state = 2}, + [344] = {.lex_state = 12, .external_lex_state = 2}, + [345] = {.lex_state = 12, .external_lex_state = 2}, + [346] = {.lex_state = 12, .external_lex_state = 2}, + [347] = {.lex_state = 12, .external_lex_state = 2}, + [348] = {.lex_state = 12, .external_lex_state = 2}, + [349] = {.lex_state = 12, .external_lex_state = 2}, + [350] = {.lex_state = 12, .external_lex_state = 2}, + [351] = {.lex_state = 12, .external_lex_state = 2}, + [352] = {.lex_state = 12, .external_lex_state = 2}, + [353] = {.lex_state = 12, .external_lex_state = 2}, + [354] = {.lex_state = 12, .external_lex_state = 2}, + [355] = {.lex_state = 12, .external_lex_state = 2}, + [356] = {.lex_state = 12, .external_lex_state = 2}, + [357] = {.lex_state = 12, .external_lex_state = 2}, + [358] = {.lex_state = 12, .external_lex_state = 2}, + [359] = {.lex_state = 12, .external_lex_state = 2}, + [360] = {.lex_state = 12, .external_lex_state = 2}, + [361] = {.lex_state = 12, .external_lex_state = 2}, + [362] = {.lex_state = 12, .external_lex_state = 2}, + [363] = {.lex_state = 12, .external_lex_state = 2}, + [364] = {.lex_state = 12, .external_lex_state = 2}, + [365] = {.lex_state = 12, .external_lex_state = 2}, + [366] = {.lex_state = 12, .external_lex_state = 2}, + [367] = {.lex_state = 12, .external_lex_state = 2}, + [368] = {.lex_state = 12, .external_lex_state = 2}, + [369] = {.lex_state = 12, .external_lex_state = 2}, + [370] = {.lex_state = 12, .external_lex_state = 2}, + [371] = {.lex_state = 12, .external_lex_state = 2}, + [372] = {.lex_state = 12, .external_lex_state = 2}, + [373] = {.lex_state = 12, .external_lex_state = 2}, + [374] = {.lex_state = 12, .external_lex_state = 2}, + [375] = {.lex_state = 12, .external_lex_state = 2}, + [376] = {.lex_state = 12, .external_lex_state = 2}, + [377] = {.lex_state = 12, .external_lex_state = 2}, + [378] = {.lex_state = 12, .external_lex_state = 2}, + [379] = {.lex_state = 12, .external_lex_state = 2}, + [380] = {.lex_state = 12, .external_lex_state = 2}, + [381] = {.lex_state = 12, .external_lex_state = 2}, + [382] = {.lex_state = 12, .external_lex_state = 2}, + [383] = {.lex_state = 12, .external_lex_state = 2}, + [384] = {.lex_state = 12, .external_lex_state = 2}, + [385] = {.lex_state = 12, .external_lex_state = 2}, + [386] = {.lex_state = 12, .external_lex_state = 2}, + [387] = {.lex_state = 12, .external_lex_state = 2}, + [388] = {.lex_state = 12, .external_lex_state = 2}, + [389] = {.lex_state = 12, .external_lex_state = 2}, + [390] = {.lex_state = 12, .external_lex_state = 2}, + [391] = {.lex_state = 12, .external_lex_state = 2}, + [392] = {.lex_state = 12, .external_lex_state = 2}, + [393] = {.lex_state = 12, .external_lex_state = 2}, + [394] = {.lex_state = 12, .external_lex_state = 2}, + [395] = {.lex_state = 12, .external_lex_state = 2}, + [396] = {.lex_state = 12, .external_lex_state = 2}, + [397] = {.lex_state = 12, .external_lex_state = 2}, + [398] = {.lex_state = 12, .external_lex_state = 2}, + [399] = {.lex_state = 12, .external_lex_state = 2}, + [400] = {.lex_state = 12, .external_lex_state = 2}, + [401] = {.lex_state = 12, .external_lex_state = 2}, + [402] = {.lex_state = 12, .external_lex_state = 2}, + [403] = {.lex_state = 12, .external_lex_state = 2}, + [404] = {.lex_state = 12, .external_lex_state = 2}, + [405] = {.lex_state = 12, .external_lex_state = 2}, + [406] = {.lex_state = 12, .external_lex_state = 2}, + [407] = {.lex_state = 12, .external_lex_state = 2}, + [408] = {.lex_state = 12, .external_lex_state = 2}, + [409] = {.lex_state = 12, .external_lex_state = 2}, + [410] = {.lex_state = 12, .external_lex_state = 2}, + [411] = {.lex_state = 12, .external_lex_state = 2}, + [412] = {.lex_state = 12, .external_lex_state = 2}, + [413] = {.lex_state = 12, .external_lex_state = 2}, + [414] = {.lex_state = 12, .external_lex_state = 2}, + [415] = {.lex_state = 12, .external_lex_state = 2}, + [416] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 2}, + [418] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 12, .external_lex_state = 2}, + [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}, + [429] = {.lex_state = 22, .external_lex_state = 4}, + [430] = {.lex_state = 203, .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}, + [434] = {.lex_state = 23, .external_lex_state = 4}, + [435] = {.lex_state = 23, .external_lex_state = 4}, + [436] = {.lex_state = 23, .external_lex_state = 4}, + [437] = {.lex_state = 23, .external_lex_state = 4}, + [438] = {.lex_state = 23, .external_lex_state = 4}, + [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}, + [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}, + [449] = {.lex_state = 24, .external_lex_state = 3}, + [450] = {.lex_state = 24, .external_lex_state = 4}, + [451] = {.lex_state = 24, .external_lex_state = 3}, + [452] = {.lex_state = 24, .external_lex_state = 4}, + [453] = {.lex_state = 26, .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}, + [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}, + [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}, + [472] = {.lex_state = 20, .external_lex_state = 5}, + [473] = {.lex_state = 24, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [538] = {.lex_state = 21, .external_lex_state = 2}, + [539] = {.lex_state = 21, .external_lex_state = 2}, + [540] = {.lex_state = 201, .external_lex_state = 2}, + [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}, + [548] = {.lex_state = 21, .external_lex_state = 2}, + [549] = {.lex_state = 199, .external_lex_state = 2}, + [550] = {.lex_state = 200, .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}, + [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}, + [560] = {.lex_state = 21, .external_lex_state = 2}, + [561] = {.lex_state = 21, .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}, + [565] = {.lex_state = 21, .external_lex_state = 2}, + [566] = {.lex_state = 21, .external_lex_state = 2}, + [567] = {.lex_state = 21, .external_lex_state = 2}, + [568] = {.lex_state = 21, .external_lex_state = 2}, + [569] = {.lex_state = 21, .external_lex_state = 2}, + [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}, + [574] = {.lex_state = 21, .external_lex_state = 2}, + [575] = {.lex_state = 200, .external_lex_state = 5}, + [576] = {.lex_state = 21, .external_lex_state = 2}, + [577] = {.lex_state = 21, .external_lex_state = 2}, + [578] = {.lex_state = 21, .external_lex_state = 2}, + [579] = {.lex_state = 21, .external_lex_state = 2}, + [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}, + [586] = {.lex_state = 21, .external_lex_state = 2}, + [587] = {.lex_state = 21, .external_lex_state = 2}, + [588] = {.lex_state = 200, .external_lex_state = 5}, + [589] = {.lex_state = 21, .external_lex_state = 2}, + [590] = {.lex_state = 200, .external_lex_state = 5}, + [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}, + [595] = {.lex_state = 21, .external_lex_state = 2}, + [596] = {.lex_state = 19, .external_lex_state = 5}, + [597] = {.lex_state = 18, .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}, + [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}, + [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}, + [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}, + [622] = {.lex_state = 21, .external_lex_state = 2}, + [623] = {.lex_state = 198, .external_lex_state = 5}, + [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}, + [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}, + [633] = {.lex_state = 21, .external_lex_state = 2}, + [634] = {.lex_state = 200, .external_lex_state = 5}, + [635] = {.lex_state = 21, .external_lex_state = 2}, + [636] = {.lex_state = 21, .external_lex_state = 2}, + [637] = {.lex_state = 21, .external_lex_state = 2}, + [638] = {.lex_state = 21, .external_lex_state = 2}, + [639] = {.lex_state = 21, .external_lex_state = 2}, + [640] = {.lex_state = 21, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [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}, + [680] = {.lex_state = 19, .external_lex_state = 2}, + [681] = {.lex_state = 19, .external_lex_state = 2}, + [682] = {.lex_state = 19, .external_lex_state = 2}, + [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}, + [688] = {.lex_state = 19, .external_lex_state = 2}, + [689] = {.lex_state = 200, .external_lex_state = 2}, + [690] = {.lex_state = 200, .external_lex_state = 2}, + [691] = {.lex_state = 19, .external_lex_state = 2}, + [692] = {.lex_state = 200, .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}, + [697] = {.lex_state = 19, .external_lex_state = 2}, + [698] = {.lex_state = 200, .external_lex_state = 2}, + [699] = {.lex_state = 19, .external_lex_state = 2}, + [700] = {.lex_state = 19, .external_lex_state = 2}, + [701] = {.lex_state = 19, .external_lex_state = 2}, + [702] = {.lex_state = 19, .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}, + [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}, + [710] = {.lex_state = 19, .external_lex_state = 2}, + [711] = {.lex_state = 197, .external_lex_state = 5}, + [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}, + [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}, + [722] = {.lex_state = 19, .external_lex_state = 2}, + [723] = {.lex_state = 19, .external_lex_state = 2}, + [724] = {.lex_state = 19, .external_lex_state = 2}, + [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}, + [731] = {.lex_state = 19, .external_lex_state = 2}, + [732] = {.lex_state = 19, .external_lex_state = 2}, + [733] = {.lex_state = 25, .external_lex_state = 4}, + [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}, + [751] = {.lex_state = 19, .external_lex_state = 2}, + [752] = {.lex_state = 200, .external_lex_state = 2}, + [753] = {.lex_state = 19, .external_lex_state = 2}, + [754] = {.lex_state = 19, .external_lex_state = 2}, + [755] = {.lex_state = 19, .external_lex_state = 2}, + [756] = {.lex_state = 19, .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}, + [761] = {.lex_state = 19, .external_lex_state = 2}, + [762] = {.lex_state = 200, .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}, + [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}, + [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}, + [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}, + [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}, + [824] = {.lex_state = 19, .external_lex_state = 2}, + [825] = {.lex_state = 200, .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}, + [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}, + [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}, + [1079] = {.lex_state = 30, .external_lex_state = 3}, + [1080] = {.lex_state = 12, .external_lex_state = 2}, + [1081] = {.lex_state = 12, .external_lex_state = 2}, + [1082] = {.lex_state = 30, .external_lex_state = 4}, + [1083] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1088] = {.lex_state = 30, .external_lex_state = 3}, + [1089] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [1094] = {.lex_state = 30, .external_lex_state = 3}, + [1095] = {.lex_state = 30, .external_lex_state = 4}, + [1096] = {.lex_state = 30, .external_lex_state = 4}, + [1097] = {.lex_state = 30, .external_lex_state = 3}, + [1098] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1103] = {.lex_state = 30, .external_lex_state = 3}, + [1104] = {.lex_state = 30, .external_lex_state = 3}, + [1105] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1114] = {.lex_state = 30, .external_lex_state = 3}, + [1115] = {.lex_state = 30, .external_lex_state = 3}, + [1116] = {.lex_state = 30, .external_lex_state = 3}, + [1117] = {.lex_state = 30, .external_lex_state = 3}, + [1118] = {.lex_state = 30, .external_lex_state = 3}, + [1119] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [1124] = {.lex_state = 30, .external_lex_state = 3}, + [1125] = {.lex_state = 30, .external_lex_state = 3}, + [1126] = {.lex_state = 30, .external_lex_state = 4}, + [1127] = {.lex_state = 30, .external_lex_state = 3}, + [1128] = {.lex_state = 30, .external_lex_state = 3}, + [1129] = {.lex_state = 30, .external_lex_state = 3}, + [1130] = {.lex_state = 30, .external_lex_state = 3}, + [1131] = {.lex_state = 30, .external_lex_state = 3}, + [1132] = {.lex_state = 30, .external_lex_state = 3}, + [1133] = {.lex_state = 30, .external_lex_state = 3}, + [1134] = {.lex_state = 30, .external_lex_state = 3}, + [1135] = {.lex_state = 30, .external_lex_state = 3}, + [1136] = {.lex_state = 30, .external_lex_state = 3}, + [1137] = {.lex_state = 30, .external_lex_state = 3}, + [1138] = {.lex_state = 30, .external_lex_state = 3}, + [1139] = {.lex_state = 30, .external_lex_state = 3}, + [1140] = {.lex_state = 30, .external_lex_state = 3}, + [1141] = {.lex_state = 30, .external_lex_state = 3}, + [1142] = {.lex_state = 30, .external_lex_state = 3}, + [1143] = {.lex_state = 30, .external_lex_state = 3}, + [1144] = {.lex_state = 30, .external_lex_state = 3}, + [1145] = {.lex_state = 30, .external_lex_state = 3}, + [1146] = {.lex_state = 30, .external_lex_state = 3}, + [1147] = {.lex_state = 30, .external_lex_state = 3}, + [1148] = {.lex_state = 30, .external_lex_state = 3}, + [1149] = {.lex_state = 30, .external_lex_state = 3}, + [1150] = {.lex_state = 30, .external_lex_state = 3}, + [1151] = {.lex_state = 30, .external_lex_state = 3}, + [1152] = {.lex_state = 30, .external_lex_state = 3}, + [1153] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [1158] = {.lex_state = 30, .external_lex_state = 3}, + [1159] = {.lex_state = 30, .external_lex_state = 3}, + [1160] = {.lex_state = 30, .external_lex_state = 3}, + [1161] = {.lex_state = 30, .external_lex_state = 3}, + [1162] = {.lex_state = 30, .external_lex_state = 3}, + [1163] = {.lex_state = 30, .external_lex_state = 3}, + [1164] = {.lex_state = 30, .external_lex_state = 3}, + [1165] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [1170] = {.lex_state = 30, .external_lex_state = 3}, + [1171] = {.lex_state = 30, .external_lex_state = 3}, + [1172] = {.lex_state = 30, .external_lex_state = 3}, + [1173] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [1188] = {.lex_state = 30, .external_lex_state = 4}, + [1189] = {.lex_state = 30, .external_lex_state = 4}, + [1190] = {.lex_state = 30, .external_lex_state = 4}, + [1191] = {.lex_state = 30, .external_lex_state = 4}, + [1192] = {.lex_state = 30, .external_lex_state = 4}, + [1193] = {.lex_state = 30, .external_lex_state = 4}, + [1194] = {.lex_state = 30, .external_lex_state = 4}, + [1195] = {.lex_state = 30, .external_lex_state = 4}, + [1196] = {.lex_state = 30, .external_lex_state = 4}, + [1197] = {.lex_state = 30, .external_lex_state = 4}, + [1198] = {.lex_state = 30, .external_lex_state = 4}, + [1199] = {.lex_state = 30, .external_lex_state = 4}, + [1200] = {.lex_state = 30, .external_lex_state = 4}, + [1201] = {.lex_state = 30, .external_lex_state = 4}, + [1202] = {.lex_state = 30, .external_lex_state = 4}, + [1203] = {.lex_state = 30, .external_lex_state = 4}, + [1204] = {.lex_state = 30, .external_lex_state = 4}, + [1205] = {.lex_state = 30, .external_lex_state = 4}, + [1206] = {.lex_state = 30, .external_lex_state = 4}, + [1207] = {.lex_state = 30, .external_lex_state = 4}, + [1208] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [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}, + [1218] = {.lex_state = 30, .external_lex_state = 4}, + [1219] = {.lex_state = 30, .external_lex_state = 3}, + [1220] = {.lex_state = 30, .external_lex_state = 4}, + [1221] = {.lex_state = 30, .external_lex_state = 4}, + [1222] = {.lex_state = 30, .external_lex_state = 4}, + [1223] = {.lex_state = 30, .external_lex_state = 4}, + [1224] = {.lex_state = 30, .external_lex_state = 4}, + [1225] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1230] = {.lex_state = 30, .external_lex_state = 4}, + [1231] = {.lex_state = 30, .external_lex_state = 4}, + [1232] = {.lex_state = 30, .external_lex_state = 3}, + [1233] = {.lex_state = 30, .external_lex_state = 4}, + [1234] = {.lex_state = 30, .external_lex_state = 3}, + [1235] = {.lex_state = 30, .external_lex_state = 4}, + [1236] = {.lex_state = 30, .external_lex_state = 4}, + [1237] = {.lex_state = 30, .external_lex_state = 3}, + [1238] = {.lex_state = 30, .external_lex_state = 4}, + [1239] = {.lex_state = 30, .external_lex_state = 4}, + [1240] = {.lex_state = 30, .external_lex_state = 4}, + [1241] = {.lex_state = 30, .external_lex_state = 4}, + [1242] = {.lex_state = 30, .external_lex_state = 4}, + [1243] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1248] = {.lex_state = 30, .external_lex_state = 4}, + [1249] = {.lex_state = 30, .external_lex_state = 4}, + [1250] = {.lex_state = 30, .external_lex_state = 4}, + [1251] = {.lex_state = 30, .external_lex_state = 4}, + [1252] = {.lex_state = 30, .external_lex_state = 4}, + [1253] = {.lex_state = 30, .external_lex_state = 4}, + [1254] = {.lex_state = 30, .external_lex_state = 4}, + [1255] = {.lex_state = 30, .external_lex_state = 4}, + [1256] = {.lex_state = 30, .external_lex_state = 4}, + [1257] = {.lex_state = 30, .external_lex_state = 4}, + [1258] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [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}, + [1267] = {.lex_state = 30, .external_lex_state = 4}, + [1268] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1273] = {.lex_state = 30, .external_lex_state = 4}, + [1274] = {.lex_state = 30, .external_lex_state = 3}, + [1275] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1283] = {.lex_state = 30, .external_lex_state = 4}, + [1284] = {.lex_state = 30, .external_lex_state = 3}, + [1285] = {.lex_state = 30, .external_lex_state = 3}, + [1286] = {.lex_state = 30, .external_lex_state = 4}, + [1287] = {.lex_state = 30, .external_lex_state = 3}, + [1288] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [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}, + [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}, + [1312] = {.lex_state = 30, .external_lex_state = 4}, + [1313] = {.lex_state = 30, .external_lex_state = 4}, + [1314] = {.lex_state = 29, .external_lex_state = 4}, + [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}, + [1319] = {.lex_state = 30, .external_lex_state = 4}, + [1320] = {.lex_state = 30, .external_lex_state = 3}, + [1321] = {.lex_state = 30, .external_lex_state = 3}, + [1322] = {.lex_state = 30, .external_lex_state = 4}, + [1323] = {.lex_state = 30, .external_lex_state = 4}, + [1324] = {.lex_state = 30, .external_lex_state = 3}, + [1325] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1331] = {.lex_state = 30, .external_lex_state = 4}, + [1332] = {.lex_state = 30, .external_lex_state = 3}, + [1333] = {.lex_state = 30, .external_lex_state = 3}, + [1334] = {.lex_state = 30, .external_lex_state = 4}, + [1335] = {.lex_state = 32, .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}, + [1343] = {.lex_state = 30, .external_lex_state = 4}, + [1344] = {.lex_state = 30, .external_lex_state = 4}, + [1345] = {.lex_state = 30, .external_lex_state = 4}, + [1346] = {.lex_state = 30, .external_lex_state = 4}, + [1347] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [1354] = {.lex_state = 30, .external_lex_state = 4}, + [1355] = {.lex_state = 30, .external_lex_state = 3}, + [1356] = {.lex_state = 30, .external_lex_state = 4}, + [1357] = {.lex_state = 30, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [1400] = {.lex_state = 30, .external_lex_state = 3}, + [1401] = {.lex_state = 30, .external_lex_state = 4}, + [1402] = {.lex_state = 30, .external_lex_state = 4}, + [1403] = {.lex_state = 30, .external_lex_state = 3}, + [1404] = {.lex_state = 30, .external_lex_state = 4}, + [1405] = {.lex_state = 30, .external_lex_state = 4}, + [1406] = {.lex_state = 30, .external_lex_state = 3}, + [1407] = {.lex_state = 30, .external_lex_state = 3}, + [1408] = {.lex_state = 30, .external_lex_state = 3}, + [1409] = {.lex_state = 30, .external_lex_state = 4}, + [1410] = {.lex_state = 30, .external_lex_state = 3}, + [1411] = {.lex_state = 30, .external_lex_state = 3}, + [1412] = {.lex_state = 30, .external_lex_state = 3}, + [1413] = {.lex_state = 30, .external_lex_state = 3}, + [1414] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [1419] = {.lex_state = 30, .external_lex_state = 3}, + [1420] = {.lex_state = 30, .external_lex_state = 3}, + [1421] = {.lex_state = 30, .external_lex_state = 3}, + [1422] = {.lex_state = 30, .external_lex_state = 3}, + [1423] = {.lex_state = 30, .external_lex_state = 3}, + [1424] = {.lex_state = 30, .external_lex_state = 3}, + [1425] = {.lex_state = 30, .external_lex_state = 3}, + [1426] = {.lex_state = 30, .external_lex_state = 3}, + [1427] = {.lex_state = 30, .external_lex_state = 3}, + [1428] = {.lex_state = 30, .external_lex_state = 3}, + [1429] = {.lex_state = 30, .external_lex_state = 3}, + [1430] = {.lex_state = 30, .external_lex_state = 3}, + [1431] = {.lex_state = 30, .external_lex_state = 3}, + [1432] = {.lex_state = 30, .external_lex_state = 3}, + [1433] = {.lex_state = 30, .external_lex_state = 3}, + [1434] = {.lex_state = 30, .external_lex_state = 3}, + [1435] = {.lex_state = 30, .external_lex_state = 3}, + [1436] = {.lex_state = 30, .external_lex_state = 3}, + [1437] = {.lex_state = 30, .external_lex_state = 3}, + [1438] = {.lex_state = 30, .external_lex_state = 3}, + [1439] = {.lex_state = 30, .external_lex_state = 3}, + [1440] = {.lex_state = 30, .external_lex_state = 3}, + [1441] = {.lex_state = 30, .external_lex_state = 3}, + [1442] = {.lex_state = 30, .external_lex_state = 3}, + [1443] = {.lex_state = 30, .external_lex_state = 3}, + [1444] = {.lex_state = 30, .external_lex_state = 3}, + [1445] = {.lex_state = 30, .external_lex_state = 3}, + [1446] = {.lex_state = 30, .external_lex_state = 3}, + [1447] = {.lex_state = 30, .external_lex_state = 3}, + [1448] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [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}, + [1461] = {.lex_state = 30, .external_lex_state = 3}, + [1462] = {.lex_state = 30, .external_lex_state = 3}, + [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}, + [1468] = {.lex_state = 37, .external_lex_state = 2}, + [1469] = {.lex_state = 37, .external_lex_state = 2}, + [1470] = {.lex_state = 37, .external_lex_state = 2}, + [1471] = {.lex_state = 37, .external_lex_state = 2}, + [1472] = {.lex_state = 37, .external_lex_state = 2}, + [1473] = {.lex_state = 37, .external_lex_state = 2}, + [1474] = {.lex_state = 37, .external_lex_state = 2}, + [1475] = {.lex_state = 37, .external_lex_state = 2}, + [1476] = {.lex_state = 37, .external_lex_state = 2}, + [1477] = {.lex_state = 37, .external_lex_state = 2}, + [1478] = {.lex_state = 37, .external_lex_state = 2}, + [1479] = {.lex_state = 37, .external_lex_state = 2}, + [1480] = {.lex_state = 37, .external_lex_state = 2}, + [1481] = {.lex_state = 37, .external_lex_state = 2}, + [1482] = {.lex_state = 37, .external_lex_state = 2}, + [1483] = {.lex_state = 37, .external_lex_state = 2}, + [1484] = {.lex_state = 37, .external_lex_state = 2}, + [1485] = {.lex_state = 37, .external_lex_state = 2}, + [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}, + [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}, + [1502] = {.lex_state = 33, .external_lex_state = 2}, + [1503] = {.lex_state = 33, .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}, + [1507] = {.lex_state = 33, .external_lex_state = 2}, + [1508] = {.lex_state = 33, .external_lex_state = 2}, + [1509] = {.lex_state = 33, .external_lex_state = 2}, + [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}, + [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}, + [1522] = {.lex_state = 33, .external_lex_state = 2}, + [1523] = {.lex_state = 33, .external_lex_state = 5}, + [1524] = {.lex_state = 33, .external_lex_state = 2}, + [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}, + [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}, + [1554] = {.lex_state = 37, .external_lex_state = 2}, + [1555] = {.lex_state = 37, .external_lex_state = 2}, + [1556] = {.lex_state = 37, .external_lex_state = 2}, + [1557] = {.lex_state = 37, .external_lex_state = 2}, + [1558] = {.lex_state = 37, .external_lex_state = 2}, + [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}, + [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}, + [1569] = {.lex_state = 37, .external_lex_state = 2}, + [1570] = {.lex_state = 37, .external_lex_state = 2}, + [1571] = {.lex_state = 37, .external_lex_state = 2}, + [1572] = {.lex_state = 37, .external_lex_state = 2}, + [1573] = {.lex_state = 37, .external_lex_state = 2}, + [1574] = {.lex_state = 37, .external_lex_state = 2}, + [1575] = {.lex_state = 37, .external_lex_state = 2}, + [1576] = {.lex_state = 37, .external_lex_state = 2}, + [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}, + [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}, + [1595] = {.lex_state = 35, .external_lex_state = 2}, + [1596] = {.lex_state = 203, .external_lex_state = 2}, + [1597] = {.lex_state = 33, .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}, + [1601] = {.lex_state = 33, .external_lex_state = 2}, + [1602] = {.lex_state = 33, .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}, + [1606] = {.lex_state = 33, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [1621] = {.lex_state = 33, .external_lex_state = 2}, + [1622] = {.lex_state = 33, .external_lex_state = 2}, + [1623] = {.lex_state = 33, .external_lex_state = 2}, + [1624] = {.lex_state = 203, .external_lex_state = 2}, + [1625] = {.lex_state = 35, .external_lex_state = 2}, + [1626] = {.lex_state = 35, .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}, + [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}, + [1635] = {.lex_state = 33, .external_lex_state = 2}, + [1636] = {.lex_state = 33, .external_lex_state = 2}, + [1637] = {.lex_state = 203, .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}, + [1644] = {.lex_state = 33, .external_lex_state = 2}, + [1645] = {.lex_state = 37, .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}, + [1651] = {.lex_state = 33, .external_lex_state = 2}, + [1652] = {.lex_state = 33, .external_lex_state = 2}, + [1653] = {.lex_state = 203, .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}, + [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}, + [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}, + [1730] = {.lex_state = 34, .external_lex_state = 2}, + [1731] = {.lex_state = 203, .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}, + [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}, + [1744] = {.lex_state = 34, .external_lex_state = 2}, + [1745] = {.lex_state = 203, .external_lex_state = 2}, + [1746] = {.lex_state = 203, .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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { + [sym_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym_hash_bang_line] = ACTIONS(1), @@ -13284,7 +13191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_SLASH2] = ACTIONS(1), @@ -13305,15174 +13212,15317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1), [sym__template_chars] = ACTIONS(1), [sym__ternary_qmark] = ACTIONS(1), + [sym_html_comment] = ACTIONS(5), }, [1] = { - [sym_program] = STATE(2651), - [sym_export_statement] = STATE(58), - [sym_declaration] = STATE(58), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_for_in_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_try_statement] = STATE(58), - [sym_with_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_debugger_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_throw_statement] = STATE(58), - [sym_empty_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(58), - [aux_sym_export_statement_repeat1] = STATE(1827), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [sym_hash_bang_line] = ACTIONS(9), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(61), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [2] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2018), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2018), - [sym_pair] = STATE(2018), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2017), - [aux_sym_object_pattern_repeat1] = STATE(2085), - [sym_identifier] = ACTIONS(89), - [anon_sym_export] = ACTIONS(91), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(97), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(101), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(111), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), + [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_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_identifier] = ACTIONS(93), + [anon_sym_export] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(99), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(117), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(121), + [anon_sym_set] = ACTIONS(121), + [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2018), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2018), - [sym_pair] = STATE(2018), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2017), - [aux_sym_object_pattern_repeat1] = STATE(2085), - [sym_identifier] = ACTIONS(117), - [anon_sym_export] = ACTIONS(119), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(97), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(121), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(123), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), + [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_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), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(123), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(117), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(121), + [anon_sym_set] = ACTIONS(121), + [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(43), - [sym_declaration] = STATE(43), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_for_in_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym_with_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_debugger_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_empty_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2073), - [sym_pair] = STATE(2073), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2082), - [aux_sym_object_pattern_repeat1] = STATE(2085), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(133), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(135), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [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_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), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(125), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(117), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(121), + [anon_sym_set] = ACTIONS(121), + [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(35), - [sym_declaration] = STATE(35), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_for_in_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_with_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_debugger_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_empty_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2073), - [sym_pair] = STATE(2073), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(35), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2082), - [aux_sym_object_pattern_repeat1] = STATE(2085), + [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_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), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(139), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(133), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(135), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(131), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(137), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(47), - [sym_declaration] = STATE(47), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_for_in_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym_with_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_debugger_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_throw_statement] = STATE(47), - [sym_empty_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2073), - [sym_pair] = STATE(2073), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(47), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2082), - [aux_sym_object_pattern_repeat1] = STATE(2085), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(141), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(133), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(135), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [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_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), + [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), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(131), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(149), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(151), + [anon_sym_set] = ACTIONS(151), + [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(22), - [sym_declaration] = STATE(22), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_for_in_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_with_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_debugger_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2073), - [sym_pair] = STATE(2073), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2082), - [aux_sym_object_pattern_repeat1] = STATE(2085), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(143), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(133), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(135), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [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_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), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(117), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(121), + [anon_sym_set] = ACTIONS(121), + [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(37), - [sym_declaration] = STATE(37), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_for_in_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_with_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_debugger_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_throw_statement] = STATE(37), - [sym_empty_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2073), - [sym_pair] = STATE(2073), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2082), - [aux_sym_object_pattern_repeat1] = STATE(2085), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(145), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(133), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(135), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [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_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), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(117), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(121), + [anon_sym_set] = ACTIONS(121), + [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(41), - [sym_declaration] = STATE(41), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_for_in_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_with_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_debugger_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_empty_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2674), - [sym_object_assignment_pattern] = STATE(1977), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2674), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2674), - [sym_spread_element] = STATE(2073), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1358), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(1592), - [sym_formal_parameters] = STATE(2662), - [sym_rest_pattern] = STATE(1977), - [sym_method_definition] = STATE(2073), - [sym_pair] = STATE(2073), - [sym_pair_pattern] = STATE(1977), - [sym__property_name] = STATE(2087), - [sym_computed_property_name] = STATE(2087), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(1507), - [aux_sym_object_repeat1] = STATE(2082), - [aux_sym_object_pattern_repeat1] = STATE(2085), - [sym_identifier] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(93), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(95), - [anon_sym_RBRACE] = ACTIONS(147), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(99), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(133), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(105), - [sym_private_property_identifier] = ACTIONS(107), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(109), - [anon_sym_static] = ACTIONS(135), - [aux_sym_method_definition_token1] = ACTIONS(113), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [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_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), + [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_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(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_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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(111), + [sym_private_property_identifier] = ACTIONS(113), + [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(115), + [anon_sym_static] = ACTIONS(117), + [aux_sym_method_definition_token1] = ACTIONS(119), + [anon_sym_get] = ACTIONS(121), + [anon_sym_set] = ACTIONS(121), + [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_for_in_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_with_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_debugger_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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(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(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_default] = ACTIONS(153), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(153), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(153), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [aux_sym_export_statement_repeat1] = STATE(1816), + [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_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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_for_in_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_with_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_debugger_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_default] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(197), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(197), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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), + [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(10), - [sym_declaration] = STATE(10), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_for_in_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_try_statement] = STATE(10), - [sym_with_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_debugger_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_default] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(199), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(199), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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(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), + [anon_sym_default] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(165), + [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_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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_for_in_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_try_statement] = STATE(11), - [sym_with_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_debugger_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_throw_statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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(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(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_default] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [aux_sym_export_statement_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(159), + [anon_sym_export] = ACTIONS(161), + [anon_sym_default] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(165), + [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_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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_for_in_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_with_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_debugger_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(203), - [anon_sym_export] = ACTIONS(206), - [anon_sym_default] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_import] = ACTIONS(214), - [anon_sym_var] = ACTIONS(217), - [anon_sym_let] = ACTIONS(220), - [anon_sym_const] = ACTIONS(220), - [anon_sym_if] = ACTIONS(223), - [anon_sym_switch] = ACTIONS(226), - [anon_sym_for] = ACTIONS(229), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_await] = ACTIONS(235), - [anon_sym_while] = ACTIONS(238), - [anon_sym_do] = ACTIONS(241), - [anon_sym_try] = ACTIONS(244), - [anon_sym_with] = ACTIONS(247), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(253), - [anon_sym_debugger] = ACTIONS(256), - [anon_sym_return] = ACTIONS(259), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_case] = ACTIONS(209), - [anon_sym_yield] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LTtemplate_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_class] = ACTIONS(280), - [anon_sym_async] = ACTIONS(283), - [anon_sym_function] = ACTIONS(286), - [anon_sym_new] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_SLASH] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_typeof] = ACTIONS(292), - [anon_sym_void] = ACTIONS(292), - [anon_sym_delete] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(298), - [anon_sym_DASH_DASH] = ACTIONS(298), - [anon_sym_DQUOTE] = ACTIONS(301), - [anon_sym_SQUOTE] = ACTIONS(304), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(307), - [sym_number] = ACTIONS(310), - [sym_private_property_identifier] = ACTIONS(313), - [sym_this] = ACTIONS(310), - [sym_super] = ACTIONS(310), - [sym_true] = ACTIONS(310), - [sym_false] = ACTIONS(310), - [sym_null] = ACTIONS(310), - [sym_undefined] = ACTIONS(316), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_static] = ACTIONS(322), - [anon_sym_get] = ACTIONS(322), - [anon_sym_set] = ACTIONS(322), + [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(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), + [anon_sym_default] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(165), + [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_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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [ts_builtin_sym_end] = ACTIONS(325), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_import] = ACTIONS(336), - [anon_sym_var] = ACTIONS(339), - [anon_sym_let] = ACTIONS(342), - [anon_sym_const] = ACTIONS(342), - [anon_sym_if] = ACTIONS(345), - [anon_sym_switch] = ACTIONS(348), - [anon_sym_for] = ACTIONS(351), - [anon_sym_LPAREN] = ACTIONS(232), - [anon_sym_await] = ACTIONS(235), - [anon_sym_while] = ACTIONS(354), - [anon_sym_do] = ACTIONS(357), - [anon_sym_try] = ACTIONS(360), - [anon_sym_with] = ACTIONS(363), - [anon_sym_break] = ACTIONS(366), - [anon_sym_continue] = ACTIONS(369), - [anon_sym_debugger] = ACTIONS(372), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_LTtemplate_GT] = ACTIONS(274), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_class] = ACTIONS(384), - [anon_sym_async] = ACTIONS(387), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_SLASH] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_typeof] = ACTIONS(292), - [anon_sym_void] = ACTIONS(292), - [anon_sym_delete] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(298), - [anon_sym_DASH_DASH] = ACTIONS(298), - [anon_sym_DQUOTE] = ACTIONS(301), - [anon_sym_SQUOTE] = ACTIONS(304), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(307), - [sym_number] = ACTIONS(310), - [sym_private_property_identifier] = ACTIONS(313), - [sym_this] = ACTIONS(310), - [sym_super] = ACTIONS(310), - [sym_true] = ACTIONS(310), - [sym_false] = ACTIONS(310), - [sym_null] = ACTIONS(310), - [sym_undefined] = ACTIONS(316), - [anon_sym_AT] = ACTIONS(319), - [anon_sym_static] = ACTIONS(393), - [anon_sym_get] = ACTIONS(393), - [anon_sym_set] = ACTIONS(393), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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_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_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), + [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(411), + [anon_sym_get] = ACTIONS(411), + [anon_sym_set] = ACTIONS(411), + [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(32), - [sym_declaration] = STATE(32), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_for_in_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_with_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_debugger_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_empty_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [17] = { - [sym_export_statement] = STATE(37), - [sym_declaration] = STATE(37), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_for_in_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_with_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_debugger_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_throw_statement] = STATE(37), - [sym_empty_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(398), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [18] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [19] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [20] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [21] = { - [sym_export_statement] = STATE(43), - [sym_declaration] = STATE(43), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_for_in_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym_with_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_debugger_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_empty_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [22] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(408), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [23] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_for_in_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_with_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_debugger_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_empty_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [24] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [25] = { - [sym_export_statement] = STATE(26), - [sym_declaration] = STATE(26), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_for_in_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_debugger_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_empty_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [26] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(416), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [27] = { - [sym_export_statement] = STATE(65), - [sym_declaration] = STATE(65), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_for_in_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_debugger_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_throw_statement] = STATE(65), - [sym_empty_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [28] = { - [sym_export_statement] = STATE(30), - [sym_declaration] = STATE(30), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_for_in_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_with_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_debugger_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym_empty_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [29] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [30] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [31] = { - [sym_export_statement] = STATE(67), - [sym_declaration] = STATE(67), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_for_in_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_debugger_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_throw_statement] = STATE(67), - [sym_empty_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(67), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(426), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [32] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [33] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [34] = { - [sym_export_statement] = STATE(22), - [sym_declaration] = STATE(22), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_for_in_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_with_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_debugger_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [35] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(434), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [36] = { - [sym_export_statement] = STATE(33), - [sym_declaration] = STATE(33), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_for_in_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_debugger_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_empty_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [37] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(438), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [38] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [39] = { - [sym_export_statement] = STATE(38), - [sym_declaration] = STATE(38), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_for_in_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_try_statement] = STATE(38), - [sym_with_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_debugger_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym_empty_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(38), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(442), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [40] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [41] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [42] = { - [sym_export_statement] = STATE(40), - [sym_declaration] = STATE(40), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_for_in_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym_with_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_debugger_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_throw_statement] = STATE(40), - [sym_empty_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [43] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [44] = { - [sym_export_statement] = STATE(41), - [sym_declaration] = STATE(41), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_for_in_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_with_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_debugger_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_empty_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(41), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [45] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [46] = { - [sym_export_statement] = STATE(45), - [sym_declaration] = STATE(45), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_for_in_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_try_statement] = STATE(45), - [sym_with_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_debugger_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_throw_statement] = STATE(45), - [sym_empty_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(456), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [47] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [48] = { - [sym_export_statement] = STATE(62), - [sym_declaration] = STATE(62), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_for_in_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_debugger_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_throw_statement] = STATE(62), - [sym_empty_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(62), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [49] = { - [sym_export_statement] = STATE(60), - [sym_declaration] = STATE(60), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_for_in_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_with_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_debugger_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_throw_statement] = STATE(60), - [sym_empty_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_export_statement_repeat1] = STATE(1827), - [ts_builtin_sym_end] = ACTIONS(462), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [50] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(464), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [51] = { - [sym_export_statement] = STATE(61), - [sym_declaration] = STATE(61), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_for_in_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_try_statement] = STATE(61), - [sym_with_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_debugger_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_throw_statement] = STATE(61), - [sym_empty_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [52] = { - [sym_export_statement] = STATE(53), - [sym_declaration] = STATE(53), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_for_in_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_try_statement] = STATE(53), - [sym_with_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_debugger_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_throw_statement] = STATE(53), - [sym_empty_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(53), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(468), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [53] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [54] = { - [sym_export_statement] = STATE(35), - [sym_declaration] = STATE(35), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_for_in_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_with_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_debugger_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_empty_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(35), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [55] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [56] = { - [sym_export_statement] = STATE(55), - [sym_declaration] = STATE(55), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_for_in_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_try_statement] = STATE(55), - [sym_with_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_debugger_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_throw_statement] = STATE(55), - [sym_empty_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(55), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [57] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [58] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [ts_builtin_sym_end] = ACTIONS(462), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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), }, [59] = { - [sym_export_statement] = STATE(57), - [sym_declaration] = STATE(57), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_for_in_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_try_statement] = STATE(57), - [sym_with_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_debugger_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_throw_statement] = STATE(57), - [sym_empty_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(57), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [60] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [ts_builtin_sym_end] = ACTIONS(482), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(62), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [61] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [ts_builtin_sym_end] = ACTIONS(498), + [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), }, [62] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [63] = { - [sym_export_statement] = STATE(68), - [sym_declaration] = STATE(68), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_for_in_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_debugger_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_empty_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [64] = { - [sym_export_statement] = STATE(47), - [sym_declaration] = STATE(47), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_for_in_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_try_statement] = STATE(47), - [sym_with_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_debugger_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_throw_statement] = STATE(47), - [sym_empty_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(47), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [65] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), - }, - [66] = { - [sym_export_statement] = STATE(50), - [sym_declaration] = STATE(50), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_for_in_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_with_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_debugger_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_empty_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(50), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), + }, + [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_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_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_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), }, [67] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), + [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_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(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [aux_sym_export_statement_repeat1] = STATE(1850), + [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_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), }, [68] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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_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), }, [69] = { - [sym_export_statement] = STATE(809), - [sym_declaration] = STATE(809), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(809), - [sym_expression_statement] = STATE(809), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(809), - [sym_if_statement] = STATE(809), - [sym_switch_statement] = STATE(809), - [sym_for_statement] = STATE(809), - [sym_for_in_statement] = STATE(809), - [sym_while_statement] = STATE(809), - [sym_do_statement] = STATE(809), - [sym_try_statement] = STATE(809), - [sym_with_statement] = STATE(809), - [sym_break_statement] = STATE(809), - [sym_continue_statement] = STATE(809), - [sym_debugger_statement] = STATE(809), - [sym_return_statement] = STATE(809), - [sym_throw_statement] = STATE(809), - [sym_empty_statement] = STATE(809), - [sym_labeled_statement] = STATE(809), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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_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), + [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), }, [70] = { - [sym_export_statement] = STATE(2612), - [sym_declaration] = STATE(2612), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2612), - [sym_expression_statement] = STATE(2612), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2612), - [sym_if_statement] = STATE(2612), - [sym_switch_statement] = STATE(2612), - [sym_for_statement] = STATE(2612), - [sym_for_in_statement] = STATE(2612), - [sym_while_statement] = STATE(2612), - [sym_do_statement] = STATE(2612), - [sym_try_statement] = STATE(2612), - [sym_with_statement] = STATE(2612), - [sym_break_statement] = STATE(2612), - [sym_continue_statement] = STATE(2612), - [sym_debugger_statement] = STATE(2612), - [sym_return_statement] = STATE(2612), - [sym_throw_statement] = STATE(2612), - [sym_empty_statement] = STATE(2612), - [sym_labeled_statement] = STATE(2612), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), }, [71] = { - [sym_export_statement] = STATE(876), - [sym_declaration] = STATE(876), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(876), - [sym_expression_statement] = STATE(876), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(876), - [sym_if_statement] = STATE(876), - [sym_switch_statement] = STATE(876), - [sym_for_statement] = STATE(876), - [sym_for_in_statement] = STATE(876), - [sym_while_statement] = STATE(876), - [sym_do_statement] = STATE(876), - [sym_try_statement] = STATE(876), - [sym_with_statement] = STATE(876), - [sym_break_statement] = STATE(876), - [sym_continue_statement] = STATE(876), - [sym_debugger_statement] = STATE(876), - [sym_return_statement] = STATE(876), - [sym_throw_statement] = STATE(876), - [sym_empty_statement] = STATE(876), - [sym_labeled_statement] = STATE(876), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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_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), }, [72] = { - [sym_export_statement] = STATE(555), - [sym_declaration] = STATE(556), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(557), - [sym_expression_statement] = STATE(559), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(563), - [sym_if_statement] = STATE(565), - [sym_switch_statement] = STATE(570), - [sym_for_statement] = STATE(572), - [sym_for_in_statement] = STATE(573), - [sym_while_statement] = STATE(575), - [sym_do_statement] = STATE(577), - [sym_try_statement] = STATE(578), - [sym_with_statement] = STATE(580), - [sym_break_statement] = STATE(581), - [sym_continue_statement] = STATE(584), - [sym_debugger_statement] = STATE(585), - [sym_return_statement] = STATE(587), - [sym_throw_statement] = STATE(589), - [sym_empty_statement] = STATE(590), - [sym_labeled_statement] = STATE(591), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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(593), - [sym_declaration] = STATE(593), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(593), - [sym_expression_statement] = STATE(593), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(593), - [sym_if_statement] = STATE(593), - [sym_switch_statement] = STATE(593), - [sym_for_statement] = STATE(593), - [sym_for_in_statement] = STATE(593), - [sym_while_statement] = STATE(593), - [sym_do_statement] = STATE(593), - [sym_try_statement] = STATE(593), - [sym_with_statement] = STATE(593), - [sym_break_statement] = STATE(593), - [sym_continue_statement] = STATE(593), - [sym_debugger_statement] = STATE(593), - [sym_return_statement] = STATE(593), - [sym_throw_statement] = STATE(593), - [sym_empty_statement] = STATE(593), - [sym_labeled_statement] = STATE(593), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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), + [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), }, [74] = { - [sym_export_statement] = STATE(596), - [sym_declaration] = STATE(596), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(596), - [sym_expression_statement] = STATE(596), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(596), - [sym_if_statement] = STATE(596), - [sym_switch_statement] = STATE(596), - [sym_for_statement] = STATE(596), - [sym_for_in_statement] = STATE(596), - [sym_while_statement] = STATE(596), - [sym_do_statement] = STATE(596), - [sym_try_statement] = STATE(596), - [sym_with_statement] = STATE(596), - [sym_break_statement] = STATE(596), - [sym_continue_statement] = STATE(596), - [sym_debugger_statement] = STATE(596), - [sym_return_statement] = STATE(596), - [sym_throw_statement] = STATE(596), - [sym_empty_statement] = STATE(596), - [sym_labeled_statement] = STATE(596), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_export_statement] = STATE(624), - [sym_declaration] = STATE(625), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(626), - [sym_expression_statement] = STATE(630), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(571), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(515), - [sym_for_statement] = STATE(636), - [sym_for_in_statement] = STATE(637), - [sym_while_statement] = STATE(638), - [sym_do_statement] = STATE(513), - [sym_try_statement] = STATE(658), - [sym_with_statement] = STATE(657), - [sym_break_statement] = STATE(656), - [sym_continue_statement] = STATE(655), - [sym_debugger_statement] = STATE(654), - [sym_return_statement] = STATE(652), - [sym_throw_statement] = STATE(651), - [sym_empty_statement] = STATE(650), - [sym_labeled_statement] = STATE(512), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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), + [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), }, [76] = { - [sym_export_statement] = STATE(642), - [sym_declaration] = STATE(642), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(642), - [sym_if_statement] = STATE(642), - [sym_switch_statement] = STATE(642), - [sym_for_statement] = STATE(642), - [sym_for_in_statement] = STATE(642), - [sym_while_statement] = STATE(642), - [sym_do_statement] = STATE(642), - [sym_try_statement] = STATE(642), - [sym_with_statement] = STATE(642), - [sym_break_statement] = STATE(642), - [sym_continue_statement] = STATE(642), - [sym_debugger_statement] = STATE(642), - [sym_return_statement] = STATE(642), - [sym_throw_statement] = STATE(642), - [sym_empty_statement] = STATE(642), - [sym_labeled_statement] = STATE(642), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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), + [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), }, [77] = { - [sym_export_statement] = STATE(620), - [sym_declaration] = STATE(620), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(620), - [sym_expression_statement] = STATE(620), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(620), - [sym_if_statement] = STATE(620), - [sym_switch_statement] = STATE(620), - [sym_for_statement] = STATE(620), - [sym_for_in_statement] = STATE(620), - [sym_while_statement] = STATE(620), - [sym_do_statement] = STATE(620), - [sym_try_statement] = STATE(620), - [sym_with_statement] = STATE(620), - [sym_break_statement] = STATE(620), - [sym_continue_statement] = STATE(620), - [sym_debugger_statement] = STATE(620), - [sym_return_statement] = STATE(620), - [sym_throw_statement] = STATE(620), - [sym_empty_statement] = STATE(620), - [sym_labeled_statement] = STATE(620), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [sym_export_statement] = STATE(505), + [sym_declaration] = STATE(505), + [sym_import] = STATE(1785), + [sym_import_statement] = STATE(505), + [sym_expression_statement] = STATE(505), + [sym_variable_declaration] = STATE(654), + [sym_lexical_declaration] = STATE(654), + [sym_statement_block] = STATE(505), + [sym_if_statement] = STATE(505), + [sym_switch_statement] = STATE(505), + [sym_for_statement] = STATE(505), + [sym_for_in_statement] = STATE(505), + [sym_while_statement] = STATE(505), + [sym_do_statement] = STATE(505), + [sym_try_statement] = STATE(505), + [sym_with_statement] = STATE(505), + [sym_break_statement] = STATE(505), + [sym_continue_statement] = STATE(505), + [sym_debugger_statement] = STATE(505), + [sym_return_statement] = STATE(505), + [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), + [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), }, [78] = { - [sym_export_statement] = STATE(601), - [sym_declaration] = STATE(601), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(601), - [sym_expression_statement] = STATE(601), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(601), - [sym_if_statement] = STATE(601), - [sym_switch_statement] = STATE(601), - [sym_for_statement] = STATE(601), - [sym_for_in_statement] = STATE(601), - [sym_while_statement] = STATE(601), - [sym_do_statement] = STATE(601), - [sym_try_statement] = STATE(601), - [sym_with_statement] = STATE(601), - [sym_break_statement] = STATE(601), - [sym_continue_statement] = STATE(601), - [sym_debugger_statement] = STATE(601), - [sym_return_statement] = STATE(601), - [sym_throw_statement] = STATE(601), - [sym_empty_statement] = STATE(601), - [sym_labeled_statement] = STATE(601), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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), + [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), }, [79] = { - [sym_export_statement] = STATE(612), - [sym_declaration] = STATE(612), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(612), - [sym_expression_statement] = STATE(612), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(612), - [sym_if_statement] = STATE(612), - [sym_switch_statement] = STATE(612), - [sym_for_statement] = STATE(612), - [sym_for_in_statement] = STATE(612), - [sym_while_statement] = STATE(612), - [sym_do_statement] = STATE(612), - [sym_try_statement] = STATE(612), - [sym_with_statement] = STATE(612), - [sym_break_statement] = STATE(612), - [sym_continue_statement] = STATE(612), - [sym_debugger_statement] = STATE(612), - [sym_return_statement] = STATE(612), - [sym_throw_statement] = STATE(612), - [sym_empty_statement] = STATE(612), - [sym_labeled_statement] = STATE(612), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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(754), - [sym_declaration] = STATE(754), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(754), - [sym_expression_statement] = STATE(754), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(754), - [sym_if_statement] = STATE(754), - [sym_switch_statement] = STATE(754), - [sym_for_statement] = STATE(754), - [sym_for_in_statement] = STATE(754), - [sym_while_statement] = STATE(754), - [sym_do_statement] = STATE(754), - [sym_try_statement] = STATE(754), - [sym_with_statement] = STATE(754), - [sym_break_statement] = STATE(754), - [sym_continue_statement] = STATE(754), - [sym_debugger_statement] = STATE(754), - [sym_return_statement] = STATE(754), - [sym_throw_statement] = STATE(754), - [sym_empty_statement] = STATE(754), - [sym_labeled_statement] = STATE(754), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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_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), + [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), }, [81] = { - [sym_export_statement] = STATE(836), - [sym_declaration] = STATE(836), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(836), - [sym_expression_statement] = STATE(836), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(836), - [sym_if_statement] = STATE(836), - [sym_switch_statement] = STATE(836), - [sym_for_statement] = STATE(836), - [sym_for_in_statement] = STATE(836), - [sym_while_statement] = STATE(836), - [sym_do_statement] = STATE(836), - [sym_try_statement] = STATE(836), - [sym_with_statement] = STATE(836), - [sym_break_statement] = STATE(836), - [sym_continue_statement] = STATE(836), - [sym_debugger_statement] = STATE(836), - [sym_return_statement] = STATE(836), - [sym_throw_statement] = STATE(836), - [sym_empty_statement] = STATE(836), - [sym_labeled_statement] = STATE(836), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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_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(744), - [sym_declaration] = STATE(744), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(744), - [sym_expression_statement] = STATE(744), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(744), - [sym_if_statement] = STATE(744), - [sym_switch_statement] = STATE(744), - [sym_for_statement] = STATE(744), - [sym_for_in_statement] = STATE(744), - [sym_while_statement] = STATE(744), - [sym_do_statement] = STATE(744), - [sym_try_statement] = STATE(744), - [sym_with_statement] = STATE(744), - [sym_break_statement] = STATE(744), - [sym_continue_statement] = STATE(744), - [sym_debugger_statement] = STATE(744), - [sym_return_statement] = STATE(744), - [sym_throw_statement] = STATE(744), - [sym_empty_statement] = STATE(744), - [sym_labeled_statement] = STATE(744), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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_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), }, [83] = { - [sym_export_statement] = STATE(2659), - [sym_declaration] = STATE(2659), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2659), - [sym_expression_statement] = STATE(2659), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2659), - [sym_if_statement] = STATE(2659), - [sym_switch_statement] = STATE(2659), - [sym_for_statement] = STATE(2659), - [sym_for_in_statement] = STATE(2659), - [sym_while_statement] = STATE(2659), - [sym_do_statement] = STATE(2659), - [sym_try_statement] = STATE(2659), - [sym_with_statement] = STATE(2659), - [sym_break_statement] = STATE(2659), - [sym_continue_statement] = STATE(2659), - [sym_debugger_statement] = STATE(2659), - [sym_return_statement] = STATE(2659), - [sym_throw_statement] = STATE(2659), - [sym_empty_statement] = STATE(2659), - [sym_labeled_statement] = STATE(2659), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_export_statement] = STATE(2322), - [sym_declaration] = STATE(2319), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2318), - [sym_expression_statement] = STATE(2313), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2312), - [sym_if_statement] = STATE(2311), - [sym_switch_statement] = STATE(2310), - [sym_for_statement] = STATE(2300), - [sym_for_in_statement] = STATE(2296), - [sym_while_statement] = STATE(2295), - [sym_do_statement] = STATE(2288), - [sym_try_statement] = STATE(2286), - [sym_with_statement] = STATE(2283), - [sym_break_statement] = STATE(2281), - [sym_continue_statement] = STATE(2276), - [sym_debugger_statement] = STATE(2275), - [sym_return_statement] = STATE(2274), - [sym_throw_statement] = STATE(2273), - [sym_empty_statement] = STATE(2272), - [sym_labeled_statement] = STATE(2269), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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), + [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), }, [85] = { - [sym_export_statement] = STATE(487), - [sym_declaration] = STATE(487), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(487), - [sym_expression_statement] = STATE(487), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(487), - [sym_if_statement] = STATE(487), - [sym_switch_statement] = STATE(487), - [sym_for_statement] = STATE(487), - [sym_for_in_statement] = STATE(487), - [sym_while_statement] = STATE(487), - [sym_do_statement] = STATE(487), - [sym_try_statement] = STATE(487), - [sym_with_statement] = STATE(487), - [sym_break_statement] = STATE(487), - [sym_continue_statement] = STATE(487), - [sym_debugger_statement] = STATE(487), - [sym_return_statement] = STATE(487), - [sym_throw_statement] = STATE(487), - [sym_empty_statement] = STATE(487), - [sym_labeled_statement] = STATE(487), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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), + [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), }, [86] = { [sym_export_statement] = STATE(807), - [sym_declaration] = STATE(814), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(834), - [sym_expression_statement] = STATE(840), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(842), - [sym_if_statement] = STATE(846), - [sym_switch_statement] = STATE(672), - [sym_for_statement] = STATE(872), - [sym_for_in_statement] = STATE(871), - [sym_while_statement] = STATE(870), - [sym_do_statement] = STATE(869), - [sym_try_statement] = STATE(867), - [sym_with_statement] = STATE(866), - [sym_break_statement] = STATE(864), - [sym_continue_statement] = STATE(862), - [sym_debugger_statement] = STATE(693), - [sym_return_statement] = STATE(860), - [sym_throw_statement] = STATE(859), - [sym_empty_statement] = STATE(858), - [sym_labeled_statement] = STATE(857), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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_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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_export_statement] = STATE(2680), - [sym_declaration] = STATE(2680), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2680), - [sym_expression_statement] = STATE(2680), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2680), - [sym_if_statement] = STATE(2680), - [sym_switch_statement] = STATE(2680), - [sym_for_statement] = STATE(2680), - [sym_for_in_statement] = STATE(2680), - [sym_while_statement] = STATE(2680), - [sym_do_statement] = STATE(2680), - [sym_try_statement] = STATE(2680), - [sym_with_statement] = STATE(2680), - [sym_break_statement] = STATE(2680), - [sym_continue_statement] = STATE(2680), - [sym_debugger_statement] = STATE(2680), - [sym_return_statement] = STATE(2680), - [sym_throw_statement] = STATE(2680), - [sym_empty_statement] = STATE(2680), - [sym_labeled_statement] = STATE(2680), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), }, [88] = { - [sym_export_statement] = STATE(2127), - [sym_declaration] = STATE(2127), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2127), - [sym_expression_statement] = STATE(2127), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2127), - [sym_if_statement] = STATE(2127), - [sym_switch_statement] = STATE(2127), - [sym_for_statement] = STATE(2127), - [sym_for_in_statement] = STATE(2127), - [sym_while_statement] = STATE(2127), - [sym_do_statement] = STATE(2127), - [sym_try_statement] = STATE(2127), - [sym_with_statement] = STATE(2127), - [sym_break_statement] = STATE(2127), - [sym_continue_statement] = STATE(2127), - [sym_debugger_statement] = STATE(2127), - [sym_return_statement] = STATE(2127), - [sym_throw_statement] = STATE(2127), - [sym_empty_statement] = STATE(2127), - [sym_labeled_statement] = STATE(2127), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_export_statement] = STATE(2657), - [sym_declaration] = STATE(2657), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2657), - [sym_expression_statement] = STATE(2657), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2657), - [sym_if_statement] = STATE(2657), - [sym_switch_statement] = STATE(2657), - [sym_for_statement] = STATE(2657), - [sym_for_in_statement] = STATE(2657), - [sym_while_statement] = STATE(2657), - [sym_do_statement] = STATE(2657), - [sym_try_statement] = STATE(2657), - [sym_with_statement] = STATE(2657), - [sym_break_statement] = STATE(2657), - [sym_continue_statement] = STATE(2657), - [sym_debugger_statement] = STATE(2657), - [sym_return_statement] = STATE(2657), - [sym_throw_statement] = STATE(2657), - [sym_empty_statement] = STATE(2657), - [sym_labeled_statement] = STATE(2657), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), }, [90] = { - [sym_export_statement] = STATE(799), - [sym_declaration] = STATE(799), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(799), - [sym_expression_statement] = STATE(799), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(799), - [sym_if_statement] = STATE(799), - [sym_switch_statement] = STATE(799), - [sym_for_statement] = STATE(799), - [sym_for_in_statement] = STATE(799), - [sym_while_statement] = STATE(799), - [sym_do_statement] = STATE(799), - [sym_try_statement] = STATE(799), - [sym_with_statement] = STATE(799), - [sym_break_statement] = STATE(799), - [sym_continue_statement] = STATE(799), - [sym_debugger_statement] = STATE(799), - [sym_return_statement] = STATE(799), - [sym_throw_statement] = STATE(799), - [sym_empty_statement] = STATE(799), - [sym_labeled_statement] = STATE(799), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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), + [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), }, [91] = { - [sym_export_statement] = STATE(2162), - [sym_declaration] = STATE(2162), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2162), - [sym_expression_statement] = STATE(2162), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2162), - [sym_if_statement] = STATE(2162), - [sym_switch_statement] = STATE(2162), - [sym_for_statement] = STATE(2162), - [sym_for_in_statement] = STATE(2162), - [sym_while_statement] = STATE(2162), - [sym_do_statement] = STATE(2162), - [sym_try_statement] = STATE(2162), - [sym_with_statement] = STATE(2162), - [sym_break_statement] = STATE(2162), - [sym_continue_statement] = STATE(2162), - [sym_debugger_statement] = STATE(2162), - [sym_return_statement] = STATE(2162), - [sym_throw_statement] = STATE(2162), - [sym_empty_statement] = STATE(2162), - [sym_labeled_statement] = STATE(2162), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_export_statement] = STATE(2510), - [sym_declaration] = STATE(2510), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2510), - [sym_expression_statement] = STATE(2510), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2510), - [sym_if_statement] = STATE(2510), - [sym_switch_statement] = STATE(2510), - [sym_for_statement] = STATE(2510), - [sym_for_in_statement] = STATE(2510), - [sym_while_statement] = STATE(2510), - [sym_do_statement] = STATE(2510), - [sym_try_statement] = STATE(2510), - [sym_with_statement] = STATE(2510), - [sym_break_statement] = STATE(2510), - [sym_continue_statement] = STATE(2510), - [sym_debugger_statement] = STATE(2510), - [sym_return_statement] = STATE(2510), - [sym_throw_statement] = STATE(2510), - [sym_empty_statement] = STATE(2510), - [sym_labeled_statement] = STATE(2510), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_export_statement] = STATE(2525), - [sym_declaration] = STATE(2525), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2525), - [sym_expression_statement] = STATE(2525), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2525), - [sym_if_statement] = STATE(2525), - [sym_switch_statement] = STATE(2525), - [sym_for_statement] = STATE(2525), - [sym_for_in_statement] = STATE(2525), - [sym_while_statement] = STATE(2525), - [sym_do_statement] = STATE(2525), - [sym_try_statement] = STATE(2525), - [sym_with_statement] = STATE(2525), - [sym_break_statement] = STATE(2525), - [sym_continue_statement] = STATE(2525), - [sym_debugger_statement] = STATE(2525), - [sym_return_statement] = STATE(2525), - [sym_throw_statement] = STATE(2525), - [sym_empty_statement] = STATE(2525), - [sym_labeled_statement] = STATE(2525), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), }, [94] = { - [sym_export_statement] = STATE(935), - [sym_declaration] = STATE(936), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(937), - [sym_expression_statement] = STATE(938), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(940), - [sym_if_statement] = STATE(941), - [sym_switch_statement] = STATE(945), - [sym_for_statement] = STATE(946), - [sym_for_in_statement] = STATE(947), - [sym_while_statement] = STATE(949), - [sym_do_statement] = STATE(951), - [sym_try_statement] = STATE(955), - [sym_with_statement] = STATE(956), - [sym_break_statement] = STATE(966), + [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(962), - [sym_return_statement] = STATE(963), - [sym_throw_statement] = STATE(964), - [sym_empty_statement] = STATE(899), - [sym_labeled_statement] = STATE(900), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [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), }, [95] = { - [sym_export_statement] = STATE(2622), - [sym_declaration] = STATE(2623), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2631), - [sym_expression_statement] = STATE(2632), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2635), - [sym_if_statement] = STATE(2643), - [sym_switch_statement] = STATE(2644), - [sym_for_statement] = STATE(2645), - [sym_for_in_statement] = STATE(2646), - [sym_while_statement] = STATE(2521), - [sym_do_statement] = STATE(2649), - [sym_try_statement] = STATE(2642), - [sym_with_statement] = STATE(2634), - [sym_break_statement] = STATE(2624), - [sym_continue_statement] = STATE(2613), - [sym_debugger_statement] = STATE(2602), - [sym_return_statement] = STATE(2569), - [sym_throw_statement] = STATE(2461), - [sym_empty_statement] = STATE(2650), - [sym_labeled_statement] = STATE(2529), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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(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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_export_statement] = STATE(2668), - [sym_declaration] = STATE(2668), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2668), - [sym_expression_statement] = STATE(2668), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2668), - [sym_if_statement] = STATE(2668), - [sym_switch_statement] = STATE(2668), - [sym_for_statement] = STATE(2668), - [sym_for_in_statement] = STATE(2668), - [sym_while_statement] = STATE(2668), - [sym_do_statement] = STATE(2668), - [sym_try_statement] = STATE(2668), - [sym_with_statement] = STATE(2668), - [sym_break_statement] = STATE(2668), - [sym_continue_statement] = STATE(2668), - [sym_debugger_statement] = STATE(2668), - [sym_return_statement] = STATE(2668), - [sym_throw_statement] = STATE(2668), - [sym_empty_statement] = STATE(2668), - [sym_labeled_statement] = STATE(2668), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), }, [97] = { - [sym_export_statement] = STATE(708), - [sym_declaration] = STATE(708), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(708), - [sym_expression_statement] = STATE(708), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(708), - [sym_if_statement] = STATE(708), - [sym_switch_statement] = STATE(708), - [sym_for_statement] = STATE(708), - [sym_for_in_statement] = STATE(708), - [sym_while_statement] = STATE(708), - [sym_do_statement] = STATE(708), - [sym_try_statement] = STATE(708), - [sym_with_statement] = STATE(708), - [sym_break_statement] = STATE(708), - [sym_continue_statement] = STATE(708), - [sym_debugger_statement] = STATE(708), - [sym_return_statement] = STATE(708), - [sym_throw_statement] = STATE(708), - [sym_empty_statement] = STATE(708), - [sym_labeled_statement] = STATE(708), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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_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), + [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), }, [98] = { - [sym_export_statement] = STATE(706), - [sym_declaration] = STATE(710), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(738), - [sym_expression_statement] = STATE(739), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(741), - [sym_if_statement] = STATE(742), - [sym_switch_statement] = STATE(743), - [sym_for_statement] = STATE(748), - [sym_for_in_statement] = STATE(750), - [sym_while_statement] = STATE(755), - [sym_do_statement] = STATE(756), - [sym_try_statement] = STATE(758), - [sym_with_statement] = STATE(772), - [sym_break_statement] = STATE(774), - [sym_continue_statement] = STATE(781), - [sym_debugger_statement] = STATE(782), - [sym_return_statement] = STATE(786), - [sym_throw_statement] = STATE(787), - [sym_empty_statement] = STATE(789), - [sym_labeled_statement] = STATE(793), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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_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_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), }, [99] = { - [sym_export_statement] = STATE(904), - [sym_declaration] = STATE(904), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_for_in_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_with_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_debugger_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_empty_statement] = STATE(904), - [sym_labeled_statement] = STATE(904), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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_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), + [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), }, [100] = { - [sym_export_statement] = STATE(2203), - [sym_declaration] = STATE(2203), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2203), - [sym_expression_statement] = STATE(2203), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2203), - [sym_if_statement] = STATE(2203), - [sym_switch_statement] = STATE(2203), - [sym_for_statement] = STATE(2203), - [sym_for_in_statement] = STATE(2203), - [sym_while_statement] = STATE(2203), - [sym_do_statement] = STATE(2203), - [sym_try_statement] = STATE(2203), - [sym_with_statement] = STATE(2203), - [sym_break_statement] = STATE(2203), - [sym_continue_statement] = STATE(2203), - [sym_debugger_statement] = STATE(2203), - [sym_return_statement] = STATE(2203), - [sym_throw_statement] = STATE(2203), - [sym_empty_statement] = STATE(2203), - [sym_labeled_statement] = STATE(2203), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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_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), + [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), }, [101] = { - [sym_export_statement] = STATE(933), - [sym_declaration] = STATE(933), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(933), - [sym_expression_statement] = STATE(933), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(933), - [sym_if_statement] = STATE(933), - [sym_switch_statement] = STATE(933), - [sym_for_statement] = STATE(933), - [sym_for_in_statement] = STATE(933), - [sym_while_statement] = STATE(933), - [sym_do_statement] = STATE(933), - [sym_try_statement] = STATE(933), - [sym_with_statement] = STATE(933), - [sym_break_statement] = STATE(933), - [sym_continue_statement] = STATE(933), - [sym_debugger_statement] = STATE(933), - [sym_return_statement] = STATE(933), - [sym_throw_statement] = STATE(933), - [sym_empty_statement] = STATE(933), - [sym_labeled_statement] = STATE(933), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [sym_export_statement] = STATE(934), + [sym_declaration] = STATE(934), + [sym_import] = STATE(1785), + [sym_import_statement] = STATE(934), + [sym_expression_statement] = STATE(934), + [sym_variable_declaration] = STATE(923), + [sym_lexical_declaration] = STATE(923), + [sym_statement_block] = STATE(934), + [sym_if_statement] = STATE(934), + [sym_switch_statement] = STATE(934), + [sym_for_statement] = STATE(934), + [sym_for_in_statement] = STATE(934), + [sym_while_statement] = STATE(934), + [sym_do_statement] = STATE(934), + [sym_try_statement] = STATE(934), + [sym_with_statement] = STATE(934), + [sym_break_statement] = STATE(934), + [sym_continue_statement] = STATE(934), + [sym_debugger_statement] = STATE(934), + [sym_return_statement] = STATE(934), + [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_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), }, [102] = { - [sym_export_statement] = STATE(2686), - [sym_declaration] = STATE(2686), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2686), - [sym_expression_statement] = STATE(2686), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2686), - [sym_if_statement] = STATE(2686), - [sym_switch_statement] = STATE(2686), - [sym_for_statement] = STATE(2686), - [sym_for_in_statement] = STATE(2686), - [sym_while_statement] = STATE(2686), - [sym_do_statement] = STATE(2686), - [sym_try_statement] = STATE(2686), - [sym_with_statement] = STATE(2686), - [sym_break_statement] = STATE(2686), - [sym_continue_statement] = STATE(2686), - [sym_debugger_statement] = STATE(2686), - [sym_return_statement] = STATE(2686), - [sym_throw_statement] = STATE(2686), - [sym_empty_statement] = STATE(2686), - [sym_labeled_statement] = STATE(2686), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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), + [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), }, [103] = { - [sym_export_statement] = STATE(967), - [sym_declaration] = STATE(967), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(967), - [sym_expression_statement] = STATE(967), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(967), - [sym_if_statement] = STATE(967), - [sym_switch_statement] = STATE(967), - [sym_for_statement] = STATE(967), - [sym_for_in_statement] = STATE(967), - [sym_while_statement] = STATE(967), - [sym_do_statement] = STATE(967), - [sym_try_statement] = STATE(967), - [sym_with_statement] = STATE(967), - [sym_break_statement] = STATE(967), - [sym_continue_statement] = STATE(967), - [sym_debugger_statement] = STATE(967), - [sym_return_statement] = STATE(967), - [sym_throw_statement] = STATE(967), - [sym_empty_statement] = STATE(967), - [sym_labeled_statement] = STATE(967), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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), + [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), }, [104] = { - [sym_export_statement] = STATE(545), - [sym_declaration] = STATE(545), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_for_in_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_with_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_debugger_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_empty_statement] = STATE(545), - [sym_labeled_statement] = STATE(545), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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), + [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), }, [105] = { - [sym_export_statement] = STATE(517), - [sym_declaration] = STATE(517), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(517), - [sym_expression_statement] = STATE(517), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(517), - [sym_if_statement] = STATE(517), - [sym_switch_statement] = STATE(517), - [sym_for_statement] = STATE(517), - [sym_for_in_statement] = STATE(517), - [sym_while_statement] = STATE(517), - [sym_do_statement] = STATE(517), - [sym_try_statement] = STATE(517), - [sym_with_statement] = STATE(517), - [sym_break_statement] = STATE(517), - [sym_continue_statement] = STATE(517), - [sym_debugger_statement] = STATE(517), - [sym_return_statement] = STATE(517), - [sym_throw_statement] = STATE(517), - [sym_empty_statement] = STATE(517), - [sym_labeled_statement] = STATE(517), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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), + [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), }, [106] = { - [sym_export_statement] = STATE(724), - [sym_declaration] = STATE(724), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(724), - [sym_expression_statement] = STATE(724), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(724), - [sym_if_statement] = STATE(724), - [sym_switch_statement] = STATE(724), - [sym_for_statement] = STATE(724), - [sym_for_in_statement] = STATE(724), - [sym_while_statement] = STATE(724), - [sym_do_statement] = STATE(724), - [sym_try_statement] = STATE(724), - [sym_with_statement] = STATE(724), - [sym_break_statement] = STATE(724), - [sym_continue_statement] = STATE(724), - [sym_debugger_statement] = STATE(724), - [sym_return_statement] = STATE(724), - [sym_throw_statement] = STATE(724), - [sym_empty_statement] = STATE(724), - [sym_labeled_statement] = STATE(724), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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), + [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), }, [107] = { - [sym_export_statement] = STATE(723), - [sym_declaration] = STATE(722), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(721), - [sym_expression_statement] = STATE(720), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(719), - [sym_if_statement] = STATE(718), - [sym_switch_statement] = STATE(659), - [sym_for_statement] = STATE(715), - [sym_for_in_statement] = STATE(714), - [sym_while_statement] = STATE(713), - [sym_do_statement] = STATE(711), - [sym_try_statement] = STATE(705), - [sym_with_statement] = STATE(701), - [sym_break_statement] = STATE(700), - [sym_continue_statement] = STATE(697), - [sym_debugger_statement] = STATE(690), - [sym_return_statement] = STATE(686), - [sym_throw_statement] = STATE(673), - [sym_empty_statement] = STATE(678), - [sym_labeled_statement] = STATE(682), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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), + [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), + [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), + [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(207), + [anon_sym_get] = ACTIONS(207), + [anon_sym_set] = ACTIONS(207), + [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_export_statement] = STATE(944), - [sym_declaration] = STATE(944), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(944), - [sym_expression_statement] = STATE(944), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(944), - [sym_if_statement] = STATE(944), - [sym_switch_statement] = STATE(944), - [sym_for_statement] = STATE(944), - [sym_for_in_statement] = STATE(944), - [sym_while_statement] = STATE(944), - [sym_do_statement] = STATE(944), - [sym_try_statement] = STATE(944), - [sym_with_statement] = STATE(944), - [sym_break_statement] = STATE(944), - [sym_continue_statement] = STATE(944), - [sym_debugger_statement] = STATE(944), - [sym_return_statement] = STATE(944), - [sym_throw_statement] = STATE(944), - [sym_empty_statement] = STATE(944), - [sym_labeled_statement] = STATE(944), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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), + [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), }, [109] = { - [sym_export_statement] = STATE(890), - [sym_declaration] = STATE(885), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(882), - [sym_expression_statement] = STATE(879), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(878), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(894), - [sym_for_statement] = STATE(881), - [sym_for_in_statement] = STATE(880), - [sym_while_statement] = STATE(909), - [sym_do_statement] = STATE(912), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(914), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(921), - [sym_debugger_statement] = STATE(922), - [sym_return_statement] = STATE(923), - [sym_throw_statement] = STATE(928), - [sym_empty_statement] = STATE(929), - [sym_labeled_statement] = STATE(932), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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), + [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), }, [110] = { - [sym_export_statement] = STATE(810), - [sym_declaration] = STATE(810), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(810), - [sym_expression_statement] = STATE(810), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_switch_statement] = STATE(810), - [sym_for_statement] = STATE(810), - [sym_for_in_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_do_statement] = STATE(810), - [sym_try_statement] = STATE(810), - [sym_with_statement] = STATE(810), - [sym_break_statement] = STATE(810), - [sym_continue_statement] = STATE(810), - [sym_debugger_statement] = STATE(810), - [sym_return_statement] = STATE(810), - [sym_throw_statement] = STATE(810), - [sym_empty_statement] = STATE(810), - [sym_labeled_statement] = STATE(810), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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(2030), - [sym_declaration] = STATE(2030), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(2030), - [sym_expression_statement] = STATE(2030), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_statement_block] = STATE(2030), - [sym_if_statement] = STATE(2030), - [sym_switch_statement] = STATE(2030), - [sym_for_statement] = STATE(2030), - [sym_for_in_statement] = STATE(2030), - [sym_while_statement] = STATE(2030), - [sym_do_statement] = STATE(2030), - [sym_try_statement] = STATE(2030), - [sym_with_statement] = STATE(2030), - [sym_break_statement] = STATE(2030), - [sym_continue_statement] = STATE(2030), - [sym_debugger_statement] = STATE(2030), - [sym_return_statement] = STATE(2030), - [sym_throw_statement] = STATE(2030), - [sym_empty_statement] = STATE(2030), - [sym_labeled_statement] = STATE(2030), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1265), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2297), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1793), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_import] = ACTIONS(506), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_for] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(518), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(522), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(532), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(544), - [anon_sym_get] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), + [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), + [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), }, [112] = { - [sym_export_statement] = STATE(661), - [sym_declaration] = STATE(661), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(661), - [sym_expression_statement] = STATE(661), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(661), - [sym_if_statement] = STATE(661), - [sym_switch_statement] = STATE(661), - [sym_for_statement] = STATE(661), - [sym_for_in_statement] = STATE(661), - [sym_while_statement] = STATE(661), - [sym_do_statement] = STATE(661), - [sym_try_statement] = STATE(661), - [sym_with_statement] = STATE(661), - [sym_break_statement] = STATE(661), - [sym_continue_statement] = STATE(661), - [sym_debugger_statement] = STATE(661), - [sym_return_statement] = STATE(661), - [sym_throw_statement] = STATE(661), - [sym_empty_statement] = STATE(661), - [sym_labeled_statement] = STATE(661), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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), + [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), }, [113] = { - [sym_export_statement] = STATE(698), - [sym_declaration] = STATE(812), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(865), - [sym_expression_statement] = STATE(853), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(852), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(845), - [sym_for_statement] = STATE(831), - [sym_for_in_statement] = STATE(826), - [sym_while_statement] = STATE(822), - [sym_do_statement] = STATE(820), - [sym_try_statement] = STATE(818), - [sym_with_statement] = STATE(815), - [sym_break_statement] = STATE(813), - [sym_continue_statement] = STATE(811), - [sym_debugger_statement] = STATE(808), - [sym_return_statement] = STATE(792), - [sym_throw_statement] = STATE(791), - [sym_empty_statement] = STATE(790), - [sym_labeled_statement] = STATE(785), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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(939), - [sym_declaration] = STATE(939), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(939), - [sym_expression_statement] = STATE(939), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_statement_block] = STATE(939), - [sym_if_statement] = STATE(939), - [sym_switch_statement] = STATE(939), - [sym_for_statement] = STATE(939), - [sym_for_in_statement] = STATE(939), - [sym_while_statement] = STATE(939), - [sym_do_statement] = STATE(939), - [sym_try_statement] = STATE(939), - [sym_with_statement] = STATE(939), - [sym_break_statement] = STATE(939), - [sym_continue_statement] = STATE(939), - [sym_debugger_statement] = STATE(939), - [sym_return_statement] = STATE(939), - [sym_throw_statement] = STATE(939), - [sym_empty_statement] = STATE(939), - [sym_labeled_statement] = STATE(939), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1248), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2627), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1827), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(87), - [anon_sym_get] = ACTIONS(87), - [anon_sym_set] = ACTIONS(87), + [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(676), - [sym_declaration] = STATE(676), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(676), - [sym_expression_statement] = STATE(676), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(676), - [sym_if_statement] = STATE(676), - [sym_switch_statement] = STATE(676), - [sym_for_statement] = STATE(676), - [sym_for_in_statement] = STATE(676), - [sym_while_statement] = STATE(676), - [sym_do_statement] = STATE(676), - [sym_try_statement] = STATE(676), - [sym_with_statement] = STATE(676), - [sym_break_statement] = STATE(676), - [sym_continue_statement] = STATE(676), - [sym_debugger_statement] = STATE(676), - [sym_return_statement] = STATE(676), - [sym_throw_statement] = STATE(676), - [sym_empty_statement] = STATE(676), - [sym_labeled_statement] = STATE(676), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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(664), - [sym_declaration] = STATE(664), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(664), - [sym_expression_statement] = STATE(664), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_statement_block] = STATE(664), - [sym_if_statement] = STATE(664), - [sym_switch_statement] = STATE(664), - [sym_for_statement] = STATE(664), - [sym_for_in_statement] = STATE(664), - [sym_while_statement] = STATE(664), - [sym_do_statement] = STATE(664), - [sym_try_statement] = STATE(664), - [sym_with_statement] = STATE(664), - [sym_break_statement] = STATE(664), - [sym_continue_statement] = STATE(664), - [sym_debugger_statement] = STATE(664), - [sym_return_statement] = STATE(664), - [sym_throw_statement] = STATE(664), - [sym_empty_statement] = STATE(664), - [sym_labeled_statement] = STATE(664), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1235), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2393), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1776), - [sym_identifier] = ACTIONS(149), - [anon_sym_export] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(155), - [anon_sym_import] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(165), - [anon_sym_for] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(191), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(195), - [anon_sym_get] = ACTIONS(195), - [anon_sym_set] = ACTIONS(195), + [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_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), + [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), }, [117] = { - [sym_export_statement] = STATE(474), - [sym_declaration] = STATE(474), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(474), - [sym_expression_statement] = STATE(474), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_statement_block] = STATE(474), - [sym_if_statement] = STATE(474), - [sym_switch_statement] = STATE(474), - [sym_for_statement] = STATE(474), - [sym_for_in_statement] = STATE(474), - [sym_while_statement] = STATE(474), - [sym_do_statement] = STATE(474), - [sym_try_statement] = STATE(474), - [sym_with_statement] = STATE(474), - [sym_break_statement] = STATE(474), - [sym_continue_statement] = STATE(474), - [sym_debugger_statement] = STATE(474), - [sym_return_statement] = STATE(474), - [sym_throw_statement] = STATE(474), - [sym_empty_statement] = STATE(474), - [sym_labeled_statement] = STATE(474), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1303), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2468), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1847), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_import] = ACTIONS(552), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(564), - [anon_sym_do] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_debugger] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(586), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(590), - [anon_sym_get] = ACTIONS(590), - [anon_sym_set] = ACTIONS(590), + [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_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), + [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), }, [118] = { - [sym_export_statement] = STATE(794), - [sym_declaration] = STATE(794), - [sym_import] = STATE(1268), - [sym_import_statement] = STATE(794), - [sym_expression_statement] = STATE(794), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_statement_block] = STATE(794), - [sym_if_statement] = STATE(794), - [sym_switch_statement] = STATE(794), - [sym_for_statement] = STATE(794), - [sym_for_in_statement] = STATE(794), - [sym_while_statement] = STATE(794), - [sym_do_statement] = STATE(794), - [sym_try_statement] = STATE(794), - [sym_with_statement] = STATE(794), - [sym_break_statement] = STATE(794), - [sym_continue_statement] = STATE(794), - [sym_debugger_statement] = STATE(794), - [sym_return_statement] = STATE(794), - [sym_throw_statement] = STATE(794), - [sym_empty_statement] = STATE(794), - [sym_labeled_statement] = STATE(794), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1288), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2161), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1807), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_import] = ACTIONS(598), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_if] = ACTIONS(604), - [anon_sym_switch] = ACTIONS(606), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(614), - [anon_sym_with] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(624), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), + [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_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_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), }, [119] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1097), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_await] = ACTIONS(652), - [anon_sym_in] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_RBRACK] = ACTIONS(646), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [sym_optional_chain] = ACTIONS(646), - [anon_sym_new] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(646), - [anon_sym_PIPE_PIPE] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_GT_GT_GT] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_STAR_STAR] = ACTIONS(646), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ_EQ] = ACTIONS(646), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_QMARK_QMARK] = ACTIONS(646), - [anon_sym_instanceof] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - [sym__ternary_qmark] = ACTIONS(686), + [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_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_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(666), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_await] = ACTIONS(676), + [anon_sym_in] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(670), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [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), + [sym_optional_chain] = ACTIONS(670), + [anon_sym_new] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(670), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_GT_GT_GT] = ACTIONS(670), + [anon_sym_LT_LT] = ACTIONS(670), + [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_PERCENT] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(670), + [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), + [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__ternary_qmark] = ACTIONS(710), + [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1230), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_in] = ACTIONS(646), - [anon_sym_of] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [sym_optional_chain] = ACTIONS(646), - [anon_sym_new] = ACTIONS(708), - [anon_sym_AMP_AMP] = ACTIONS(646), - [anon_sym_PIPE_PIPE] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_GT_GT_GT] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_STAR_STAR] = ACTIONS(646), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ_EQ] = ACTIONS(646), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_QMARK_QMARK] = ACTIONS(646), - [anon_sym_instanceof] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - [sym__automatic_semicolon] = ACTIONS(686), - [sym__ternary_qmark] = ACTIONS(686), + [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_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_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_STAR] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_COMMA] = ACTIONS(670), + [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_in] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(670), + [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_AMP_AMP] = ACTIONS(670), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_GT_GT_GT] = ACTIONS(670), + [anon_sym_LT_LT] = ACTIONS(670), + [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_PERCENT] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(670), + [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), + [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__automatic_semicolon] = ACTIONS(710), + [sym__ternary_qmark] = ACTIONS(710), + [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1175), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(646), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_in] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [sym_optional_chain] = ACTIONS(646), - [anon_sym_new] = ACTIONS(65), - [anon_sym_AMP_AMP] = ACTIONS(646), - [anon_sym_PIPE_PIPE] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_GT_GT_GT] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_STAR_STAR] = ACTIONS(646), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ_EQ] = ACTIONS(646), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_QMARK_QMARK] = ACTIONS(646), - [anon_sym_instanceof] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(686), - [sym__ternary_qmark] = ACTIONS(686), - }, - [122] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1351), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_in] = ACTIONS(646), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [sym_optional_chain] = ACTIONS(646), - [anon_sym_new] = ACTIONS(744), - [anon_sym_AMP_AMP] = ACTIONS(646), - [anon_sym_PIPE_PIPE] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_GT_GT_GT] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_STAR_STAR] = ACTIONS(646), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ_EQ] = ACTIONS(646), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_QMARK_QMARK] = ACTIONS(646), - [anon_sym_instanceof] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), - [sym__ternary_qmark] = ACTIONS(686), - }, - [123] = { - [sym_import] = STATE(1096), + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1420), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_in] = ACTIONS(646), - [anon_sym_of] = ACTIONS(646), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [anon_sym_class] = ACTIONS(660), + [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(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_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_COMMA] = ACTIONS(670), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(732), + [anon_sym_in] = ACTIONS(670), + [anon_sym_of] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(670), + [anon_sym_class] = ACTIONS(720), + [anon_sym_async] = ACTIONS(736), + [anon_sym_function] = ACTIONS(724), + [sym_optional_chain] = ACTIONS(670), + [anon_sym_new] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(670), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_GT_GT_GT] = ACTIONS(670), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(670), + [anon_sym_GT_EQ] = ACTIONS(670), + [anon_sym_QMARK_QMARK] = ACTIONS(670), + [anon_sym_instanceof] = ACTIONS(670), + [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__automatic_semicolon] = ACTIONS(710), + [sym__ternary_qmark] = ACTIONS(710), + [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_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_identifier] = ACTIONS(750), + [anon_sym_export] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(754), + [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_in] = ACTIONS(670), + [anon_sym_of] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(670), + [anon_sym_class] = ACTIONS(684), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [sym_optional_chain] = ACTIONS(646), + [anon_sym_function] = ACTIONS(688), + [sym_optional_chain] = ACTIONS(670), [anon_sym_new] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(646), - [anon_sym_PIPE_PIPE] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_GT_GT_GT] = ACTIONS(646), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(670), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_GT_GT_GT] = ACTIONS(670), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_PIPE] = ACTIONS(670), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_STAR_STAR] = ACTIONS(646), - [anon_sym_LT_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(646), - [anon_sym_EQ_EQ_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ] = ACTIONS(646), - [anon_sym_BANG_EQ_EQ] = ACTIONS(646), - [anon_sym_GT_EQ] = ACTIONS(646), - [anon_sym_QMARK_QMARK] = ACTIONS(646), - [anon_sym_instanceof] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(670), + [anon_sym_GT_EQ] = ACTIONS(670), + [anon_sym_QMARK_QMARK] = ACTIONS(670), + [anon_sym_instanceof] = ACTIONS(670), [anon_sym_BANG] = ACTIONS(768), [anon_sym_TILDE] = ACTIONS(768), [anon_sym_typeof] = ACTIONS(768), @@ -28480,3129 +28530,2507 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - [sym__ternary_qmark] = ACTIONS(686), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(752), + [anon_sym_get] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), + [sym__ternary_qmark] = ACTIONS(710), + [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(225), - [sym_variable_declaration] = STATE(225), - [sym_lexical_declaration] = STATE(225), - [sym_empty_statement] = STATE(225), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2081), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2081), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2081), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), + [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_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_identifier] = ACTIONS(778), [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(784), - [anon_sym_let] = ACTIONS(786), - [anon_sym_const] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(782), + [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_in] = ACTIONS(670), + [anon_sym_COLON] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(670), + [anon_sym_class] = ACTIONS(684), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(688), + [sym_optional_chain] = ACTIONS(670), + [anon_sym_new] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(670), + [anon_sym_PIPE_PIPE] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(670), + [anon_sym_GT_GT_GT] = ACTIONS(670), + [anon_sym_LT_LT] = ACTIONS(670), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_CARET] = ACTIONS(670), + [anon_sym_PIPE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_PERCENT] = ACTIONS(670), + [anon_sym_STAR_STAR] = ACTIONS(670), + [anon_sym_LT_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ] = ACTIONS(670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ] = ACTIONS(670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(670), + [anon_sym_GT_EQ] = ACTIONS(670), + [anon_sym_QMARK_QMARK] = ACTIONS(670), + [anon_sym_instanceof] = ACTIONS(670), + [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__ternary_qmark] = ACTIONS(710), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(806), + [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), + [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), }, [125] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(223), - [sym_variable_declaration] = STATE(223), - [sym_lexical_declaration] = STATE(223), - [sym_empty_statement] = STATE(223), + [sym_import] = STATE(1751), [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2081), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2081), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2081), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(784), - [anon_sym_let] = ACTIONS(786), - [anon_sym_const] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(812), + [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), + [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), }, [126] = { - [sym_declaration] = STATE(970), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1395), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1933), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(796), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(814), + [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), + [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), }, [127] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1299), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2118), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(2116), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(804), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(816), + [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), + [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), }, [128] = { - [sym_declaration] = STATE(644), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1401), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1944), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(818), + [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), + [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), }, [129] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1239), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2010), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(1991), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(812), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(818), + [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), + [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), }, [130] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1301), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2118), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(2116), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(804), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(820), + [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), + [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), }, [131] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1239), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2010), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(1991), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(814), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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_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_identifier] = ACTIONS(800), + [anon_sym_export] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(804), + [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_RBRACK] = ACTIONS(822), + [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), + [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), }, [132] = { - [sym_declaration] = STATE(677), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1372), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1888), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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(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_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), }, [133] = { - [sym_declaration] = STATE(2611), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1367), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1884), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(818), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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_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_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), + [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), }, [134] = { - [sym_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_else] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(822), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_case] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(822), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(822), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [anon_sym_GT_GT_GT] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_CARET] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_STAR_STAR] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(822), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_QMARK_QMARK] = ACTIONS(822), - [anon_sym_instanceof] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(826), - [sym__ternary_qmark] = ACTIONS(828), + [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), + [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), + [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), }, [135] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1239), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2010), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(1991), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(830), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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), + [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_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), + [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), }, [136] = { - [sym_declaration] = STATE(712), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1354), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1917), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(832), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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_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(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), + [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), }, [137] = { - [sym_declaration] = STATE(725), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1369), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(868), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(868), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(868), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1888), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(630), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(634), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1239), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2010), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(1991), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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_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_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_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), + [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), }, [139] = { - [sym_declaration] = STATE(841), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1361), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(824), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(824), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(824), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1917), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_const] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(189), - [anon_sym_async] = ACTIONS(832), - [anon_sym_function] = ACTIONS(193), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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), + [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), }, [140] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1239), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2010), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(1991), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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_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_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_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), + [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), }, [141] = { - [sym_declaration] = STATE(2224), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1387), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(2562), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(2562), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(2562), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1884), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(818), - [anon_sym_function] = ACTIONS(542), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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_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_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), + [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), }, [142] = { - [sym_declaration] = STATE(544), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1402), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(532), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(532), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(532), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1944), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(554), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(584), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(588), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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), + [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_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(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), + [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), }, [143] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(228), - [sym_variable_declaration] = STATE(228), - [sym_lexical_declaration] = STATE(228), - [sym_empty_statement] = STATE(228), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2081), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2081), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2081), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(784), - [anon_sym_let] = ACTIONS(786), - [anon_sym_const] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_declaration] = STATE(875), - [sym_import] = STATE(1268), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1366), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_class_declaration] = STATE(971), - [sym_function] = STATE(1268), - [sym_function_declaration] = STATE(971), - [sym_generator_function] = STATE(1268), - [sym_generator_function_declaration] = STATE(971), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1933), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(796), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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_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_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), + [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), }, [145] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(227), - [sym_variable_declaration] = STATE(227), - [sym_lexical_declaration] = STATE(227), - [sym_empty_statement] = STATE(227), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2081), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2081), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2081), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(784), - [anon_sym_let] = ACTIONS(786), - [anon_sym_const] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [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_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), + [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), }, [146] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(229), - [sym_variable_declaration] = STATE(229), - [sym_lexical_declaration] = STATE(229), - [sym_empty_statement] = STATE(229), - [sym_parenthesized_expression] = STATE(1031), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2081), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2081), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1031), - [sym_subscript_expression] = STATE(1031), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2081), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(782), - [anon_sym_import] = ACTIONS(696), - [anon_sym_var] = ACTIONS(784), - [anon_sym_let] = ACTIONS(786), - [anon_sym_const] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(792), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [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_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_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_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), + [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), }, [147] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1299), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2118), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(2116), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(838), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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_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(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_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), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_else] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(822), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(822), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(822), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [anon_sym_GT_GT_GT] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_CARET] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_STAR_STAR] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(822), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_QMARK_QMARK] = ACTIONS(822), - [anon_sym_instanceof] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(842), - [sym__ternary_qmark] = ACTIONS(828), + [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), + [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_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_else] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_case] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(820), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(844), - [sym__ternary_qmark] = ACTIONS(840), - }, - [150] = { - [sym_identifier] = ACTIONS(846), - [anon_sym_export] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_import] = ACTIONS(846), - [anon_sym_var] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_else] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_await] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_with] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_debugger] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_throw] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_case] = ACTIONS(846), - [anon_sym_yield] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LTtemplate_GT] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_class] = ACTIONS(846), - [anon_sym_async] = ACTIONS(846), - [anon_sym_function] = ACTIONS(846), - [sym_optional_chain] = ACTIONS(846), - [anon_sym_new] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_QMARK_QMARK] = ACTIONS(846), - [anon_sym_instanceof] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(846), - [anon_sym_void] = ACTIONS(846), - [anon_sym_delete] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_SQUOTE] = ACTIONS(846), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(846), - [sym_number] = ACTIONS(846), - [sym_private_property_identifier] = ACTIONS(846), - [sym_this] = ACTIONS(846), - [sym_super] = ACTIONS(846), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_undefined] = ACTIONS(846), - [anon_sym_AT] = ACTIONS(846), - [anon_sym_static] = ACTIONS(846), - [anon_sym_get] = ACTIONS(846), - [anon_sym_set] = ACTIONS(846), - [sym__automatic_semicolon] = ACTIONS(848), - [sym__ternary_qmark] = ACTIONS(848), - }, - [151] = { - [sym_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(822), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_case] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(822), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(822), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [anon_sym_GT_GT_GT] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_CARET] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_STAR_STAR] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(822), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_QMARK_QMARK] = ACTIONS(822), - [anon_sym_instanceof] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(850), - [sym__ternary_qmark] = ACTIONS(828), - }, - [152] = { - [sym_identifier] = ACTIONS(852), - [anon_sym_export] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(854), - [anon_sym_default] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_import] = ACTIONS(852), - [anon_sym_var] = ACTIONS(852), - [anon_sym_let] = ACTIONS(852), - [anon_sym_const] = ACTIONS(852), - [anon_sym_else] = ACTIONS(852), - [anon_sym_if] = ACTIONS(852), - [anon_sym_switch] = ACTIONS(852), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_await] = ACTIONS(852), - [anon_sym_in] = ACTIONS(854), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(852), - [anon_sym_try] = ACTIONS(852), - [anon_sym_with] = ACTIONS(852), - [anon_sym_break] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_debugger] = ACTIONS(852), - [anon_sym_return] = ACTIONS(852), - [anon_sym_throw] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_case] = ACTIONS(852), - [anon_sym_yield] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LTtemplate_GT] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_GT] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(854), - [anon_sym_class] = ACTIONS(852), - [anon_sym_async] = ACTIONS(852), - [anon_sym_function] = ACTIONS(852), - [sym_optional_chain] = ACTIONS(854), - [anon_sym_new] = ACTIONS(852), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(854), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_GT_GT_GT] = ACTIONS(854), - [anon_sym_LT_LT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_SLASH] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_STAR_STAR] = ACTIONS(854), - [anon_sym_LT_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(854), - [anon_sym_GT_EQ] = ACTIONS(854), - [anon_sym_QMARK_QMARK] = ACTIONS(854), - [anon_sym_instanceof] = ACTIONS(854), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_typeof] = ACTIONS(852), - [anon_sym_void] = ACTIONS(852), - [anon_sym_delete] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(852), - [sym_number] = ACTIONS(852), - [sym_private_property_identifier] = ACTIONS(852), - [sym_this] = ACTIONS(852), - [sym_super] = ACTIONS(852), - [sym_true] = ACTIONS(852), - [sym_false] = ACTIONS(852), - [sym_null] = ACTIONS(852), - [sym_undefined] = ACTIONS(852), - [anon_sym_AT] = ACTIONS(852), - [anon_sym_static] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [sym__automatic_semicolon] = ACTIONS(856), - [sym__ternary_qmark] = ACTIONS(858), - }, - [153] = { - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_default] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_import] = ACTIONS(860), - [anon_sym_var] = ACTIONS(860), - [anon_sym_let] = ACTIONS(860), - [anon_sym_const] = ACTIONS(860), - [anon_sym_else] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(860), - [anon_sym_await] = ACTIONS(860), - [anon_sym_in] = ACTIONS(862), - [anon_sym_while] = ACTIONS(860), - [anon_sym_do] = ACTIONS(860), - [anon_sym_try] = ACTIONS(860), - [anon_sym_with] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_throw] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_case] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LTtemplate_GT] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_class] = ACTIONS(860), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(860), - [sym_optional_chain] = ACTIONS(862), - [anon_sym_new] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(862), - [anon_sym_PIPE_PIPE] = ACTIONS(862), - [anon_sym_GT_GT] = ACTIONS(862), - [anon_sym_GT_GT_GT] = ACTIONS(862), - [anon_sym_LT_LT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(862), - [anon_sym_QMARK_QMARK] = ACTIONS(862), - [anon_sym_instanceof] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(860), - [anon_sym_typeof] = ACTIONS(860), - [anon_sym_void] = ACTIONS(860), - [anon_sym_delete] = ACTIONS(860), - [anon_sym_PLUS_PLUS] = ACTIONS(860), - [anon_sym_DASH_DASH] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_SQUOTE] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(860), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [sym_this] = ACTIONS(860), - [sym_super] = ACTIONS(860), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_null] = ACTIONS(860), - [sym_undefined] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_static] = ACTIONS(860), - [anon_sym_get] = ACTIONS(860), - [anon_sym_set] = ACTIONS(860), - [sym__automatic_semicolon] = ACTIONS(864), - [sym__ternary_qmark] = ACTIONS(866), - }, - [154] = { - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_import] = ACTIONS(868), - [anon_sym_var] = ACTIONS(868), - [anon_sym_let] = ACTIONS(868), - [anon_sym_const] = ACTIONS(868), - [anon_sym_else] = ACTIONS(868), - [anon_sym_if] = ACTIONS(868), - [anon_sym_switch] = ACTIONS(868), - [anon_sym_for] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_await] = ACTIONS(868), - [anon_sym_in] = ACTIONS(870), - [anon_sym_while] = ACTIONS(868), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(868), - [anon_sym_with] = ACTIONS(868), - [anon_sym_break] = ACTIONS(868), - [anon_sym_continue] = ACTIONS(868), - [anon_sym_debugger] = ACTIONS(868), - [anon_sym_return] = ACTIONS(868), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_case] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_LTtemplate_GT] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_class] = ACTIONS(868), - [anon_sym_async] = ACTIONS(868), - [anon_sym_function] = ACTIONS(868), - [sym_optional_chain] = ACTIONS(870), - [anon_sym_new] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(870), - [anon_sym_PIPE_PIPE] = ACTIONS(870), - [anon_sym_GT_GT] = ACTIONS(870), - [anon_sym_GT_GT_GT] = ACTIONS(870), - [anon_sym_LT_LT] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), - [anon_sym_SLASH] = ACTIONS(868), - [anon_sym_PERCENT] = ACTIONS(870), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(870), - [anon_sym_GT_EQ] = ACTIONS(870), - [anon_sym_QMARK_QMARK] = ACTIONS(870), - [anon_sym_instanceof] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(868), - [anon_sym_TILDE] = ACTIONS(868), - [anon_sym_typeof] = ACTIONS(868), - [anon_sym_void] = ACTIONS(868), - [anon_sym_delete] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(868), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_SQUOTE] = ACTIONS(868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(868), - [sym_number] = ACTIONS(868), - [sym_private_property_identifier] = ACTIONS(868), - [sym_this] = ACTIONS(868), - [sym_super] = ACTIONS(868), - [sym_true] = ACTIONS(868), - [sym_false] = ACTIONS(868), - [sym_null] = ACTIONS(868), - [sym_undefined] = ACTIONS(868), - [anon_sym_AT] = ACTIONS(868), - [anon_sym_static] = ACTIONS(868), - [anon_sym_get] = ACTIONS(868), - [anon_sym_set] = ACTIONS(868), - [sym__automatic_semicolon] = ACTIONS(872), - [sym__ternary_qmark] = ACTIONS(874), - }, - [155] = { - [sym_identifier] = ACTIONS(876), - [anon_sym_export] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_import] = ACTIONS(876), - [anon_sym_var] = ACTIONS(876), - [anon_sym_let] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_switch] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_await] = ACTIONS(876), - [anon_sym_in] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(876), - [anon_sym_try] = ACTIONS(876), - [anon_sym_with] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_throw] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_case] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_LTtemplate_GT] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_class] = ACTIONS(876), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(876), - [sym_optional_chain] = ACTIONS(876), - [anon_sym_new] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_GT_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_QMARK_QMARK] = ACTIONS(876), - [anon_sym_instanceof] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_typeof] = ACTIONS(876), - [anon_sym_void] = ACTIONS(876), - [anon_sym_delete] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [sym_private_property_identifier] = ACTIONS(876), - [sym_this] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_true] = ACTIONS(876), - [sym_false] = ACTIONS(876), - [sym_null] = ACTIONS(876), - [sym_undefined] = ACTIONS(876), - [anon_sym_AT] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(878), - [sym__ternary_qmark] = ACTIONS(878), - }, - [156] = { - [sym_identifier] = ACTIONS(880), + [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_STAR] = ACTIONS(880), - [anon_sym_default] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_COMMA] = ACTIONS(884), + [anon_sym_import] = ACTIONS(672), [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_else] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_case] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), + [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_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), + [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(894), + [anon_sym_AT] = ACTIONS(89), [anon_sym_static] = ACTIONS(880), [anon_sym_get] = ACTIONS(880), [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(882), - [sym__ternary_qmark] = ACTIONS(882), - }, - [157] = { - [sym_identifier] = ACTIONS(884), - [anon_sym_export] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_COMMA] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_import] = ACTIONS(884), - [anon_sym_var] = ACTIONS(884), - [anon_sym_let] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_await] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_try] = ACTIONS(884), - [anon_sym_with] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_debugger] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_throw] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_case] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_LTtemplate_GT] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(884), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(884), - [sym_optional_chain] = ACTIONS(884), - [anon_sym_new] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_GT_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_SLASH] = ACTIONS(884), - [anon_sym_PERCENT] = ACTIONS(884), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_QMARK_QMARK] = ACTIONS(884), - [anon_sym_instanceof] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_TILDE] = ACTIONS(884), - [anon_sym_typeof] = ACTIONS(884), - [anon_sym_void] = ACTIONS(884), - [anon_sym_delete] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_SQUOTE] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [sym_this] = ACTIONS(884), - [sym_super] = ACTIONS(884), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_null] = ACTIONS(884), - [sym_undefined] = ACTIONS(884), - [anon_sym_AT] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [sym__automatic_semicolon] = ACTIONS(886), - [sym__ternary_qmark] = ACTIONS(886), + [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_default] = ACTIONS(888), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_import] = ACTIONS(888), - [anon_sym_var] = ACTIONS(888), - [anon_sym_let] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_else] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_await] = ACTIONS(888), - [anon_sym_in] = ACTIONS(890), - [anon_sym_while] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_try] = ACTIONS(888), - [anon_sym_with] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_debugger] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_throw] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_case] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_LTtemplate_GT] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_class] = ACTIONS(888), - [anon_sym_async] = ACTIONS(888), - [anon_sym_function] = ACTIONS(888), - [sym_optional_chain] = ACTIONS(890), - [anon_sym_new] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(890), - [anon_sym_GT_GT] = ACTIONS(890), - [anon_sym_GT_GT_GT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_STAR_STAR] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(890), - [anon_sym_QMARK_QMARK] = ACTIONS(890), - [anon_sym_instanceof] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_typeof] = ACTIONS(888), - [anon_sym_void] = ACTIONS(888), - [anon_sym_delete] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(888), - [sym_number] = ACTIONS(888), - [sym_private_property_identifier] = ACTIONS(888), - [sym_this] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [sym_undefined] = ACTIONS(888), - [anon_sym_AT] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [sym__automatic_semicolon] = ACTIONS(892), - [sym__ternary_qmark] = ACTIONS(894), - }, - [159] = { + [150] = { + [sym_comment] = STATE(150), [sym_identifier] = ACTIONS(896), [anon_sym_export] = ACTIONS(896), [anon_sym_STAR] = ACTIONS(898), @@ -31673,7 +31101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(896), [anon_sym_DQUOTE] = ACTIONS(896), [anon_sym_SQUOTE] = ACTIONS(896), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(896), [sym_number] = ACTIONS(896), [sym_private_property_identifier] = ACTIONS(896), @@ -31689,1321 +31117,2612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(896), [sym__automatic_semicolon] = ACTIONS(900), [sym__ternary_qmark] = ACTIONS(902), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [155] = { + [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), + [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_RBRACK] = ACTIONS(936), + [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), + [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), + }, + [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), + [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), + [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), + [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), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_default] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), - [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_else] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_case] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(904), - [sym__ternary_qmark] = ACTIONS(882), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_identifier] = ACTIONS(906), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_default] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_import] = ACTIONS(906), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_await] = ACTIONS(906), - [anon_sym_in] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [anon_sym_with] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_debugger] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_throw] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_LTtemplate_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_class] = ACTIONS(906), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(906), - [sym_optional_chain] = ACTIONS(908), - [anon_sym_new] = ACTIONS(906), - [anon_sym_AMP_AMP] = ACTIONS(908), - [anon_sym_PIPE_PIPE] = ACTIONS(908), - [anon_sym_GT_GT] = ACTIONS(908), - [anon_sym_GT_GT_GT] = ACTIONS(908), - [anon_sym_LT_LT] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_QMARK_QMARK] = ACTIONS(908), - [anon_sym_instanceof] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_typeof] = ACTIONS(906), - [anon_sym_void] = ACTIONS(906), - [anon_sym_delete] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(906), - [sym_number] = ACTIONS(906), - [sym_private_property_identifier] = ACTIONS(906), - [sym_this] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_undefined] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(910), - [sym__ternary_qmark] = ACTIONS(912), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_identifier] = ACTIONS(914), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_default] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_import] = ACTIONS(914), - [anon_sym_var] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_await] = ACTIONS(914), - [anon_sym_in] = ACTIONS(916), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_with] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_debugger] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_throw] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LTtemplate_GT] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_class] = ACTIONS(914), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(914), - [sym_optional_chain] = ACTIONS(916), - [anon_sym_new] = ACTIONS(914), - [anon_sym_AMP_AMP] = ACTIONS(916), - [anon_sym_PIPE_PIPE] = ACTIONS(916), - [anon_sym_GT_GT] = ACTIONS(916), - [anon_sym_GT_GT_GT] = ACTIONS(916), - [anon_sym_LT_LT] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_CARET] = ACTIONS(916), - [anon_sym_PIPE] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_PERCENT] = ACTIONS(916), - [anon_sym_STAR_STAR] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ_EQ] = ACTIONS(916), - [anon_sym_GT_EQ] = ACTIONS(916), - [anon_sym_QMARK_QMARK] = ACTIONS(916), - [anon_sym_instanceof] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_typeof] = ACTIONS(914), - [anon_sym_void] = ACTIONS(914), - [anon_sym_delete] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(914), - [sym_number] = ACTIONS(914), - [sym_private_property_identifier] = ACTIONS(914), - [sym_this] = ACTIONS(914), - [sym_super] = ACTIONS(914), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_undefined] = ACTIONS(914), - [anon_sym_AT] = ACTIONS(914), - [anon_sym_static] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [sym__automatic_semicolon] = ACTIONS(918), - [sym__ternary_qmark] = ACTIONS(920), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_default] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_import] = ACTIONS(922), - [anon_sym_var] = ACTIONS(922), - [anon_sym_let] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_await] = ACTIONS(922), - [anon_sym_in] = ACTIONS(924), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_try] = ACTIONS(922), - [anon_sym_with] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_debugger] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_throw] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LTtemplate_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_class] = ACTIONS(922), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(922), - [sym_optional_chain] = ACTIONS(924), - [anon_sym_new] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_instanceof] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_typeof] = ACTIONS(922), - [anon_sym_void] = ACTIONS(922), - [anon_sym_delete] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(922), - [sym_number] = ACTIONS(922), - [sym_private_property_identifier] = ACTIONS(922), - [sym_this] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), - [sym_undefined] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_static] = ACTIONS(922), - [anon_sym_get] = ACTIONS(922), - [anon_sym_set] = ACTIONS(922), - [sym__automatic_semicolon] = ACTIONS(926), - [sym__ternary_qmark] = ACTIONS(928), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_default] = ACTIONS(888), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_import] = ACTIONS(888), - [anon_sym_var] = ACTIONS(888), - [anon_sym_let] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_await] = ACTIONS(888), - [anon_sym_in] = ACTIONS(890), - [anon_sym_while] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_try] = ACTIONS(888), - [anon_sym_with] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_debugger] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_throw] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_case] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_LTtemplate_GT] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_class] = ACTIONS(888), - [anon_sym_async] = ACTIONS(888), - [anon_sym_function] = ACTIONS(888), - [sym_optional_chain] = ACTIONS(890), - [anon_sym_new] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(890), - [anon_sym_GT_GT] = ACTIONS(890), - [anon_sym_GT_GT_GT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_STAR_STAR] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(890), - [anon_sym_QMARK_QMARK] = ACTIONS(890), - [anon_sym_instanceof] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_typeof] = ACTIONS(888), - [anon_sym_void] = ACTIONS(888), - [anon_sym_delete] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(888), - [sym_number] = ACTIONS(888), - [sym_private_property_identifier] = ACTIONS(888), - [sym_this] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [sym_undefined] = ACTIONS(888), - [anon_sym_AT] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [sym__automatic_semicolon] = ACTIONS(930), - [sym__ternary_qmark] = ACTIONS(894), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), - [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_else] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(932), - [sym__ternary_qmark] = ACTIONS(882), + [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), + [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(985), + [sym__ternary_qmark] = ACTIONS(872), + [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(940), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_RBRACK] = ACTIONS(944), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [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), + [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), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(952), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_import] = ACTIONS(860), - [anon_sym_var] = ACTIONS(860), - [anon_sym_let] = ACTIONS(860), - [anon_sym_const] = ACTIONS(860), - [anon_sym_else] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(860), - [anon_sym_await] = ACTIONS(860), - [anon_sym_in] = ACTIONS(862), - [anon_sym_while] = ACTIONS(860), - [anon_sym_do] = ACTIONS(860), - [anon_sym_try] = ACTIONS(860), - [anon_sym_with] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_throw] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LTtemplate_GT] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_class] = ACTIONS(860), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(860), - [sym_optional_chain] = ACTIONS(862), - [anon_sym_new] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(862), - [anon_sym_PIPE_PIPE] = ACTIONS(862), - [anon_sym_GT_GT] = ACTIONS(862), - [anon_sym_GT_GT_GT] = ACTIONS(862), - [anon_sym_LT_LT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(862), - [anon_sym_QMARK_QMARK] = ACTIONS(862), - [anon_sym_instanceof] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(860), - [anon_sym_typeof] = ACTIONS(860), - [anon_sym_void] = ACTIONS(860), - [anon_sym_delete] = ACTIONS(860), - [anon_sym_PLUS_PLUS] = ACTIONS(860), - [anon_sym_DASH_DASH] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_SQUOTE] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(860), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [sym_this] = ACTIONS(860), - [sym_super] = ACTIONS(860), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_null] = ACTIONS(860), - [sym_undefined] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_static] = ACTIONS(860), - [anon_sym_get] = ACTIONS(860), - [anon_sym_set] = ACTIONS(860), - [sym__automatic_semicolon] = ACTIONS(954), - [sym__ternary_qmark] = ACTIONS(866), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_default] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), - [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_case] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(956), - [sym__ternary_qmark] = ACTIONS(882), + [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), + [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), }, [169] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_LBRACE] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_import] = ACTIONS(868), - [anon_sym_var] = ACTIONS(868), - [anon_sym_let] = ACTIONS(868), - [anon_sym_const] = ACTIONS(868), - [anon_sym_else] = ACTIONS(868), - [anon_sym_if] = ACTIONS(868), - [anon_sym_switch] = ACTIONS(868), - [anon_sym_for] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_await] = ACTIONS(868), - [anon_sym_in] = ACTIONS(870), - [anon_sym_while] = ACTIONS(868), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(868), - [anon_sym_with] = ACTIONS(868), - [anon_sym_break] = ACTIONS(868), - [anon_sym_continue] = ACTIONS(868), - [anon_sym_debugger] = ACTIONS(868), - [anon_sym_return] = ACTIONS(868), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_LTtemplate_GT] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_class] = ACTIONS(868), - [anon_sym_async] = ACTIONS(868), - [anon_sym_function] = ACTIONS(868), - [sym_optional_chain] = ACTIONS(870), - [anon_sym_new] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(870), - [anon_sym_PIPE_PIPE] = ACTIONS(870), - [anon_sym_GT_GT] = ACTIONS(870), - [anon_sym_GT_GT_GT] = ACTIONS(870), - [anon_sym_LT_LT] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), - [anon_sym_SLASH] = ACTIONS(868), - [anon_sym_PERCENT] = ACTIONS(870), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(870), - [anon_sym_GT_EQ] = ACTIONS(870), - [anon_sym_QMARK_QMARK] = ACTIONS(870), - [anon_sym_instanceof] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(868), - [anon_sym_TILDE] = ACTIONS(868), - [anon_sym_typeof] = ACTIONS(868), - [anon_sym_void] = ACTIONS(868), - [anon_sym_delete] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(868), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_SQUOTE] = ACTIONS(868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(868), - [sym_number] = ACTIONS(868), - [sym_private_property_identifier] = ACTIONS(868), - [sym_this] = ACTIONS(868), - [sym_super] = ACTIONS(868), - [sym_true] = ACTIONS(868), - [sym_false] = ACTIONS(868), - [sym_null] = ACTIONS(868), - [sym_undefined] = ACTIONS(868), - [anon_sym_AT] = ACTIONS(868), - [anon_sym_static] = ACTIONS(868), - [anon_sym_get] = ACTIONS(868), - [anon_sym_set] = ACTIONS(868), - [sym__automatic_semicolon] = ACTIONS(960), - [sym__ternary_qmark] = ACTIONS(874), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1236), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2131), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_spread_element] = STATE(2063), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(2014), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_RBRACK] = ACTIONS(962), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [171] = { - [ts_builtin_sym_end] = ACTIONS(878), - [sym_identifier] = ACTIONS(876), - [anon_sym_export] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_import] = ACTIONS(876), - [anon_sym_var] = ACTIONS(876), - [anon_sym_let] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_switch] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_await] = ACTIONS(876), - [anon_sym_in] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(876), - [anon_sym_try] = ACTIONS(876), - [anon_sym_with] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_throw] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_LTtemplate_GT] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_class] = ACTIONS(876), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(876), - [sym_optional_chain] = ACTIONS(876), - [anon_sym_new] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_GT_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_QMARK_QMARK] = ACTIONS(876), - [anon_sym_instanceof] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_typeof] = ACTIONS(876), - [anon_sym_void] = ACTIONS(876), - [anon_sym_delete] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [sym_private_property_identifier] = ACTIONS(876), - [sym_this] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_true] = ACTIONS(876), - [sym_false] = ACTIONS(876), - [sym_null] = ACTIONS(876), - [sym_undefined] = ACTIONS(876), - [anon_sym_AT] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(878), - [sym__ternary_qmark] = ACTIONS(878), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(965), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_import] = ACTIONS(888), - [anon_sym_var] = ACTIONS(888), - [anon_sym_let] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_else] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_await] = ACTIONS(888), - [anon_sym_in] = ACTIONS(890), - [anon_sym_while] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_try] = ACTIONS(888), - [anon_sym_with] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_debugger] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_throw] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_LTtemplate_GT] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_class] = ACTIONS(888), - [anon_sym_async] = ACTIONS(888), - [anon_sym_function] = ACTIONS(888), - [sym_optional_chain] = ACTIONS(890), - [anon_sym_new] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(890), - [anon_sym_GT_GT] = ACTIONS(890), - [anon_sym_GT_GT_GT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_STAR_STAR] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(890), - [anon_sym_QMARK_QMARK] = ACTIONS(890), - [anon_sym_instanceof] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_typeof] = ACTIONS(888), - [anon_sym_void] = ACTIONS(888), - [anon_sym_delete] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(888), - [sym_number] = ACTIONS(888), - [sym_private_property_identifier] = ACTIONS(888), - [sym_this] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [sym_undefined] = ACTIONS(888), - [anon_sym_AT] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [sym__automatic_semicolon] = ACTIONS(967), - [sym__ternary_qmark] = ACTIONS(894), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_default] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_import] = ACTIONS(860), - [anon_sym_var] = ACTIONS(860), - [anon_sym_let] = ACTIONS(860), - [anon_sym_const] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(860), - [anon_sym_await] = ACTIONS(860), - [anon_sym_in] = ACTIONS(862), - [anon_sym_while] = ACTIONS(860), - [anon_sym_do] = ACTIONS(860), - [anon_sym_try] = ACTIONS(860), - [anon_sym_with] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_throw] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_case] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LTtemplate_GT] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_class] = ACTIONS(860), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(860), - [sym_optional_chain] = ACTIONS(862), - [anon_sym_new] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(862), - [anon_sym_PIPE_PIPE] = ACTIONS(862), - [anon_sym_GT_GT] = ACTIONS(862), - [anon_sym_GT_GT_GT] = ACTIONS(862), - [anon_sym_LT_LT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(862), - [anon_sym_QMARK_QMARK] = ACTIONS(862), - [anon_sym_instanceof] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(860), - [anon_sym_typeof] = ACTIONS(860), - [anon_sym_void] = ACTIONS(860), - [anon_sym_delete] = ACTIONS(860), - [anon_sym_PLUS_PLUS] = ACTIONS(860), - [anon_sym_DASH_DASH] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_SQUOTE] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(860), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [sym_this] = ACTIONS(860), - [sym_super] = ACTIONS(860), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_null] = ACTIONS(860), - [sym_undefined] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_static] = ACTIONS(860), - [anon_sym_get] = ACTIONS(860), - [anon_sym_set] = ACTIONS(860), - [sym__automatic_semicolon] = ACTIONS(969), - [sym__ternary_qmark] = ACTIONS(866), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [174] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(822), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(822), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(822), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(822), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(822), - [anon_sym_PIPE_PIPE] = ACTIONS(822), - [anon_sym_GT_GT] = ACTIONS(822), - [anon_sym_GT_GT_GT] = ACTIONS(822), - [anon_sym_LT_LT] = ACTIONS(822), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_CARET] = ACTIONS(822), - [anon_sym_PIPE] = ACTIONS(822), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(822), - [anon_sym_STAR_STAR] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ] = ACTIONS(822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ] = ACTIONS(822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(822), - [anon_sym_GT_EQ] = ACTIONS(822), - [anon_sym_QMARK_QMARK] = ACTIONS(822), - [anon_sym_instanceof] = ACTIONS(822), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(971), - [sym__ternary_qmark] = ACTIONS(828), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [175] = { - [ts_builtin_sym_end] = ACTIONS(973), + [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), + [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), + [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), + [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(1013), + [sym__ternary_qmark] = ACTIONS(965), + [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), + [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(1015), + [sym__ternary_qmark] = ACTIONS(918), + [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), + [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), + }, + [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), + [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), + [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), @@ -33011,7 +33730,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33028,6 +33746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33069,7 +33788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(896), [anon_sym_DQUOTE] = ACTIONS(896), [anon_sym_SQUOTE] = ACTIONS(896), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(896), [sym_number] = ACTIONS(896), [sym_private_property_identifier] = ACTIONS(896), @@ -33083,536 +33802,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(896), [anon_sym_get] = ACTIONS(896), [anon_sym_set] = ACTIONS(896), - [sym__automatic_semicolon] = ACTIONS(975), + [sym__automatic_semicolon] = ACTIONS(1019), [sym__ternary_qmark] = ACTIONS(902), + [sym_html_comment] = ACTIONS(5), }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(886), - [sym_identifier] = ACTIONS(884), - [anon_sym_export] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_COMMA] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_import] = ACTIONS(884), - [anon_sym_var] = ACTIONS(884), - [anon_sym_let] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_await] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_try] = ACTIONS(884), - [anon_sym_with] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_debugger] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_throw] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_LTtemplate_GT] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(884), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(884), - [sym_optional_chain] = ACTIONS(884), - [anon_sym_new] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_GT_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_SLASH] = ACTIONS(884), - [anon_sym_PERCENT] = ACTIONS(884), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_QMARK_QMARK] = ACTIONS(884), - [anon_sym_instanceof] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_TILDE] = ACTIONS(884), - [anon_sym_typeof] = ACTIONS(884), - [anon_sym_void] = ACTIONS(884), - [anon_sym_delete] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_SQUOTE] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [sym_this] = ACTIONS(884), - [sym_super] = ACTIONS(884), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_null] = ACTIONS(884), - [sym_undefined] = ACTIONS(884), - [anon_sym_AT] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [sym__automatic_semicolon] = ACTIONS(886), - [sym__ternary_qmark] = ACTIONS(886), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, - [177] = { - [ts_builtin_sym_end] = ACTIONS(977), - [sym_identifier] = ACTIONS(906), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_import] = ACTIONS(906), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_await] = ACTIONS(906), - [anon_sym_in] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [anon_sym_with] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_debugger] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_throw] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_LTtemplate_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_class] = ACTIONS(906), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(906), - [sym_optional_chain] = ACTIONS(908), - [anon_sym_new] = ACTIONS(906), - [anon_sym_AMP_AMP] = ACTIONS(908), - [anon_sym_PIPE_PIPE] = ACTIONS(908), - [anon_sym_GT_GT] = ACTIONS(908), - [anon_sym_GT_GT_GT] = ACTIONS(908), - [anon_sym_LT_LT] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_QMARK_QMARK] = ACTIONS(908), - [anon_sym_instanceof] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_typeof] = ACTIONS(906), - [anon_sym_void] = ACTIONS(906), - [anon_sym_delete] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(906), - [sym_number] = ACTIONS(906), - [sym_private_property_identifier] = ACTIONS(906), - [sym_this] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_undefined] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(979), - [sym__ternary_qmark] = ACTIONS(912), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2011), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(1924), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_pattern_repeat1] = STATE(2006), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(940), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [183] = { + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(914), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_import] = ACTIONS(914), - [anon_sym_var] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_await] = ACTIONS(914), - [anon_sym_in] = ACTIONS(916), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_with] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_debugger] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_throw] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LTtemplate_GT] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_class] = ACTIONS(914), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(914), - [sym_optional_chain] = ACTIONS(916), - [anon_sym_new] = ACTIONS(914), - [anon_sym_AMP_AMP] = ACTIONS(916), - [anon_sym_PIPE_PIPE] = ACTIONS(916), - [anon_sym_GT_GT] = ACTIONS(916), - [anon_sym_GT_GT_GT] = ACTIONS(916), - [anon_sym_LT_LT] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_CARET] = ACTIONS(916), - [anon_sym_PIPE] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_PERCENT] = ACTIONS(916), - [anon_sym_STAR_STAR] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ_EQ] = ACTIONS(916), - [anon_sym_GT_EQ] = ACTIONS(916), - [anon_sym_QMARK_QMARK] = ACTIONS(916), - [anon_sym_instanceof] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_typeof] = ACTIONS(914), - [anon_sym_void] = ACTIONS(914), - [anon_sym_delete] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(914), - [sym_number] = ACTIONS(914), - [sym_private_property_identifier] = ACTIONS(914), - [sym_this] = ACTIONS(914), - [sym_super] = ACTIONS(914), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_undefined] = ACTIONS(914), - [anon_sym_AT] = ACTIONS(914), - [anon_sym_static] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [sym__automatic_semicolon] = ACTIONS(985), - [sym__ternary_qmark] = ACTIONS(920), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_import] = ACTIONS(868), - [anon_sym_var] = ACTIONS(868), - [anon_sym_let] = ACTIONS(868), - [anon_sym_const] = ACTIONS(868), - [anon_sym_if] = ACTIONS(868), - [anon_sym_switch] = ACTIONS(868), - [anon_sym_for] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_await] = ACTIONS(868), - [anon_sym_in] = ACTIONS(870), - [anon_sym_while] = ACTIONS(868), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(868), - [anon_sym_with] = ACTIONS(868), - [anon_sym_break] = ACTIONS(868), - [anon_sym_continue] = ACTIONS(868), - [anon_sym_debugger] = ACTIONS(868), - [anon_sym_return] = ACTIONS(868), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_case] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_LTtemplate_GT] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_class] = ACTIONS(868), - [anon_sym_async] = ACTIONS(868), - [anon_sym_function] = ACTIONS(868), - [sym_optional_chain] = ACTIONS(870), - [anon_sym_new] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(870), - [anon_sym_PIPE_PIPE] = ACTIONS(870), - [anon_sym_GT_GT] = ACTIONS(870), - [anon_sym_GT_GT_GT] = ACTIONS(870), - [anon_sym_LT_LT] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), - [anon_sym_SLASH] = ACTIONS(868), - [anon_sym_PERCENT] = ACTIONS(870), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(870), - [anon_sym_GT_EQ] = ACTIONS(870), - [anon_sym_QMARK_QMARK] = ACTIONS(870), - [anon_sym_instanceof] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(868), - [anon_sym_TILDE] = ACTIONS(868), - [anon_sym_typeof] = ACTIONS(868), - [anon_sym_void] = ACTIONS(868), - [anon_sym_delete] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(868), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_SQUOTE] = ACTIONS(868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(868), - [sym_number] = ACTIONS(868), - [sym_private_property_identifier] = ACTIONS(868), - [sym_this] = ACTIONS(868), - [sym_super] = ACTIONS(868), - [sym_true] = ACTIONS(868), - [sym_false] = ACTIONS(868), - [sym_null] = ACTIONS(868), - [sym_undefined] = ACTIONS(868), - [anon_sym_AT] = ACTIONS(868), - [anon_sym_static] = ACTIONS(868), - [anon_sym_get] = ACTIONS(868), - [anon_sym_set] = ACTIONS(868), - [sym__automatic_semicolon] = ACTIONS(987), - [sym__ternary_qmark] = ACTIONS(874), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_import] = ACTIONS(922), - [anon_sym_var] = ACTIONS(922), - [anon_sym_let] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_await] = ACTIONS(922), - [anon_sym_in] = ACTIONS(924), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_try] = ACTIONS(922), - [anon_sym_with] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_debugger] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_throw] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LTtemplate_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_class] = ACTIONS(922), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(922), - [sym_optional_chain] = ACTIONS(924), - [anon_sym_new] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_instanceof] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_typeof] = ACTIONS(922), - [anon_sym_void] = ACTIONS(922), - [anon_sym_delete] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(922), - [sym_number] = ACTIONS(922), - [sym_private_property_identifier] = ACTIONS(922), - [sym_this] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), - [sym_undefined] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_static] = ACTIONS(922), - [anon_sym_get] = ACTIONS(922), - [anon_sym_set] = ACTIONS(922), - [sym__automatic_semicolon] = ACTIONS(991), - [sym__ternary_qmark] = ACTIONS(928), + [186] = { + [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), }, - [182] = { + [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_default] = ACTIONS(896), [anon_sym_LBRACE] = ACTIONS(896), [anon_sym_COMMA] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(896), @@ -33620,6 +34353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33636,7 +34370,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33678,7 +34411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(896), [anon_sym_DQUOTE] = ACTIONS(896), [anon_sym_SQUOTE] = ACTIONS(896), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(896), [sym_number] = ACTIONS(896), [sym_private_property_identifier] = ACTIONS(896), @@ -33692,2433 +34425,1345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(896), [anon_sym_get] = ACTIONS(896), [anon_sym_set] = ACTIONS(896), - [sym__automatic_semicolon] = ACTIONS(993), + [sym__automatic_semicolon] = ACTIONS(1043), [sym__ternary_qmark] = ACTIONS(902), - }, - [183] = { - [sym_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_default] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_case] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(820), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(995), - [sym__ternary_qmark] = ACTIONS(840), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(848), - [sym_identifier] = ACTIONS(846), - [anon_sym_export] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_import] = ACTIONS(846), - [anon_sym_var] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_else] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_await] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_with] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_debugger] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_throw] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_yield] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LTtemplate_GT] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_class] = ACTIONS(846), - [anon_sym_async] = ACTIONS(846), - [anon_sym_function] = ACTIONS(846), - [sym_optional_chain] = ACTIONS(846), - [anon_sym_new] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_QMARK_QMARK] = ACTIONS(846), - [anon_sym_instanceof] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(846), - [anon_sym_void] = ACTIONS(846), - [anon_sym_delete] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_SQUOTE] = ACTIONS(846), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(846), - [sym_number] = ACTIONS(846), - [sym_private_property_identifier] = ACTIONS(846), - [sym_this] = ACTIONS(846), - [sym_super] = ACTIONS(846), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_undefined] = ACTIONS(846), - [anon_sym_AT] = ACTIONS(846), - [anon_sym_static] = ACTIONS(846), - [anon_sym_get] = ACTIONS(846), - [anon_sym_set] = ACTIONS(846), - [sym__automatic_semicolon] = ACTIONS(848), - [sym__ternary_qmark] = ACTIONS(848), - }, - [185] = { - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_default] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), - [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_case] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(882), - [sym__ternary_qmark] = ACTIONS(882), - }, - [186] = { - [sym_identifier] = ACTIONS(846), - [anon_sym_export] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_import] = ACTIONS(846), - [anon_sym_var] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_await] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_with] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_debugger] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_throw] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_case] = ACTIONS(846), - [anon_sym_yield] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LTtemplate_GT] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_class] = ACTIONS(846), - [anon_sym_async] = ACTIONS(846), - [anon_sym_function] = ACTIONS(846), - [sym_optional_chain] = ACTIONS(846), - [anon_sym_new] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_QMARK_QMARK] = ACTIONS(846), - [anon_sym_instanceof] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(846), - [anon_sym_void] = ACTIONS(846), - [anon_sym_delete] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_SQUOTE] = ACTIONS(846), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(846), - [sym_number] = ACTIONS(846), - [sym_private_property_identifier] = ACTIONS(846), - [sym_this] = ACTIONS(846), - [sym_super] = ACTIONS(846), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_undefined] = ACTIONS(846), - [anon_sym_AT] = ACTIONS(846), - [anon_sym_static] = ACTIONS(846), - [anon_sym_get] = ACTIONS(846), - [anon_sym_set] = ACTIONS(846), - [sym__automatic_semicolon] = ACTIONS(848), - [sym__ternary_qmark] = ACTIONS(848), - }, - [187] = { - [sym_identifier] = ACTIONS(906), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_default] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_import] = ACTIONS(906), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_await] = ACTIONS(906), - [anon_sym_in] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [anon_sym_with] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_debugger] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_throw] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_case] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_LTtemplate_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_class] = ACTIONS(906), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(906), - [sym_optional_chain] = ACTIONS(908), - [anon_sym_new] = ACTIONS(906), - [anon_sym_AMP_AMP] = ACTIONS(908), - [anon_sym_PIPE_PIPE] = ACTIONS(908), - [anon_sym_GT_GT] = ACTIONS(908), - [anon_sym_GT_GT_GT] = ACTIONS(908), - [anon_sym_LT_LT] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_QMARK_QMARK] = ACTIONS(908), - [anon_sym_instanceof] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_typeof] = ACTIONS(906), - [anon_sym_void] = ACTIONS(906), - [anon_sym_delete] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(906), - [sym_number] = ACTIONS(906), - [sym_private_property_identifier] = ACTIONS(906), - [sym_this] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_undefined] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(997), - [sym__ternary_qmark] = ACTIONS(912), + [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1407), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2055), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1041), - [sym_subscript_expression] = STATE(1041), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1970), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_pattern_repeat1] = STATE(2115), - [sym_identifier] = ACTIONS(999), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(940), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(944), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_get] = ACTIONS(1001), - [anon_sym_set] = ACTIONS(1001), + [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_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_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), }, [189] = { - [sym_identifier] = ACTIONS(914), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_default] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_import] = ACTIONS(914), - [anon_sym_var] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_await] = ACTIONS(914), - [anon_sym_in] = ACTIONS(916), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_with] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_debugger] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_throw] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_case] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LTtemplate_GT] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_class] = ACTIONS(914), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(914), - [sym_optional_chain] = ACTIONS(916), - [anon_sym_new] = ACTIONS(914), - [anon_sym_AMP_AMP] = ACTIONS(916), - [anon_sym_PIPE_PIPE] = ACTIONS(916), - [anon_sym_GT_GT] = ACTIONS(916), - [anon_sym_GT_GT_GT] = ACTIONS(916), - [anon_sym_LT_LT] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_CARET] = ACTIONS(916), - [anon_sym_PIPE] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_PERCENT] = ACTIONS(916), - [anon_sym_STAR_STAR] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ_EQ] = ACTIONS(916), - [anon_sym_GT_EQ] = ACTIONS(916), - [anon_sym_QMARK_QMARK] = ACTIONS(916), - [anon_sym_instanceof] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_typeof] = ACTIONS(914), - [anon_sym_void] = ACTIONS(914), - [anon_sym_delete] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(914), - [sym_number] = ACTIONS(914), - [sym_private_property_identifier] = ACTIONS(914), - [sym_this] = ACTIONS(914), - [sym_super] = ACTIONS(914), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_undefined] = ACTIONS(914), - [anon_sym_AT] = ACTIONS(914), - [anon_sym_static] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [sym__automatic_semicolon] = ACTIONS(1011), - [sym__ternary_qmark] = ACTIONS(920), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [190] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), - [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_else] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(882), - [sym__ternary_qmark] = ACTIONS(882), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [191] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_else] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(820), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(1013), - [sym__ternary_qmark] = ACTIONS(840), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_identifier] = ACTIONS(852), - [anon_sym_export] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(854), - [anon_sym_default] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_import] = ACTIONS(852), - [anon_sym_var] = ACTIONS(852), - [anon_sym_let] = ACTIONS(852), - [anon_sym_const] = ACTIONS(852), - [anon_sym_if] = ACTIONS(852), - [anon_sym_switch] = ACTIONS(852), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_await] = ACTIONS(852), - [anon_sym_in] = ACTIONS(854), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(852), - [anon_sym_try] = ACTIONS(852), - [anon_sym_with] = ACTIONS(852), - [anon_sym_break] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_debugger] = ACTIONS(852), - [anon_sym_return] = ACTIONS(852), - [anon_sym_throw] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_case] = ACTIONS(852), - [anon_sym_yield] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LTtemplate_GT] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_GT] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(854), - [anon_sym_class] = ACTIONS(852), - [anon_sym_async] = ACTIONS(852), - [anon_sym_function] = ACTIONS(852), - [sym_optional_chain] = ACTIONS(854), - [anon_sym_new] = ACTIONS(852), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(854), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_GT_GT_GT] = ACTIONS(854), - [anon_sym_LT_LT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_SLASH] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_STAR_STAR] = ACTIONS(854), - [anon_sym_LT_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(854), - [anon_sym_GT_EQ] = ACTIONS(854), - [anon_sym_QMARK_QMARK] = ACTIONS(854), - [anon_sym_instanceof] = ACTIONS(854), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_typeof] = ACTIONS(852), - [anon_sym_void] = ACTIONS(852), - [anon_sym_delete] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(852), - [sym_number] = ACTIONS(852), - [sym_private_property_identifier] = ACTIONS(852), - [sym_this] = ACTIONS(852), - [sym_super] = ACTIONS(852), - [sym_true] = ACTIONS(852), - [sym_false] = ACTIONS(852), - [sym_null] = ACTIONS(852), - [sym_undefined] = ACTIONS(852), - [anon_sym_AT] = ACTIONS(852), - [anon_sym_static] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [sym__automatic_semicolon] = ACTIONS(1015), - [sym__ternary_qmark] = ACTIONS(858), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_identifier] = ACTIONS(852), - [anon_sym_export] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_import] = ACTIONS(852), - [anon_sym_var] = ACTIONS(852), - [anon_sym_let] = ACTIONS(852), - [anon_sym_const] = ACTIONS(852), - [anon_sym_else] = ACTIONS(852), - [anon_sym_if] = ACTIONS(852), - [anon_sym_switch] = ACTIONS(852), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_await] = ACTIONS(852), - [anon_sym_in] = ACTIONS(854), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(852), - [anon_sym_try] = ACTIONS(852), - [anon_sym_with] = ACTIONS(852), - [anon_sym_break] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_debugger] = ACTIONS(852), - [anon_sym_return] = ACTIONS(852), - [anon_sym_throw] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_yield] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LTtemplate_GT] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_GT] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(854), - [anon_sym_class] = ACTIONS(852), - [anon_sym_async] = ACTIONS(852), - [anon_sym_function] = ACTIONS(852), - [sym_optional_chain] = ACTIONS(854), - [anon_sym_new] = ACTIONS(852), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(854), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_GT_GT_GT] = ACTIONS(854), - [anon_sym_LT_LT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_SLASH] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_STAR_STAR] = ACTIONS(854), - [anon_sym_LT_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(854), - [anon_sym_GT_EQ] = ACTIONS(854), - [anon_sym_QMARK_QMARK] = ACTIONS(854), - [anon_sym_instanceof] = ACTIONS(854), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_typeof] = ACTIONS(852), - [anon_sym_void] = ACTIONS(852), - [anon_sym_delete] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(852), - [sym_number] = ACTIONS(852), - [sym_private_property_identifier] = ACTIONS(852), - [sym_this] = ACTIONS(852), - [sym_super] = ACTIONS(852), - [sym_true] = ACTIONS(852), - [sym_false] = ACTIONS(852), - [sym_null] = ACTIONS(852), - [sym_undefined] = ACTIONS(852), - [anon_sym_AT] = ACTIONS(852), - [anon_sym_static] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [sym__automatic_semicolon] = ACTIONS(1019), - [sym__ternary_qmark] = ACTIONS(858), + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(802), + [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_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), }, [194] = { - [sym_identifier] = ACTIONS(884), - [anon_sym_export] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_COMMA] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_import] = ACTIONS(884), - [anon_sym_var] = ACTIONS(884), - [anon_sym_let] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_await] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_try] = ACTIONS(884), - [anon_sym_with] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_debugger] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_throw] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_case] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_LTtemplate_GT] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(884), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(884), - [sym_optional_chain] = ACTIONS(884), - [anon_sym_new] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_GT_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_SLASH] = ACTIONS(884), - [anon_sym_PERCENT] = ACTIONS(884), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_QMARK_QMARK] = ACTIONS(884), - [anon_sym_instanceof] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_TILDE] = ACTIONS(884), - [anon_sym_typeof] = ACTIONS(884), - [anon_sym_void] = ACTIONS(884), - [anon_sym_delete] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_SQUOTE] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [sym_this] = ACTIONS(884), - [sym_super] = ACTIONS(884), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_null] = ACTIONS(884), - [sym_undefined] = ACTIONS(884), - [anon_sym_AT] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [sym__automatic_semicolon] = ACTIONS(886), - [sym__ternary_qmark] = ACTIONS(886), + [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_identifier] = ACTIONS(876), - [anon_sym_export] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_import] = ACTIONS(876), - [anon_sym_var] = ACTIONS(876), - [anon_sym_let] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_switch] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_await] = ACTIONS(876), - [anon_sym_in] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(876), - [anon_sym_try] = ACTIONS(876), - [anon_sym_with] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_throw] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_case] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_LTtemplate_GT] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_class] = ACTIONS(876), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(876), - [sym_optional_chain] = ACTIONS(876), - [anon_sym_new] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_GT_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_QMARK_QMARK] = ACTIONS(876), - [anon_sym_instanceof] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_typeof] = ACTIONS(876), - [anon_sym_void] = ACTIONS(876), - [anon_sym_delete] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [sym_private_property_identifier] = ACTIONS(876), - [sym_this] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_true] = ACTIONS(876), - [sym_false] = ACTIONS(876), - [sym_null] = ACTIONS(876), - [sym_undefined] = ACTIONS(876), - [anon_sym_AT] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(878), - [sym__ternary_qmark] = ACTIONS(878), + [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), + [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_default] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_import] = ACTIONS(922), - [anon_sym_var] = ACTIONS(922), - [anon_sym_let] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_await] = ACTIONS(922), - [anon_sym_in] = ACTIONS(924), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_try] = ACTIONS(922), - [anon_sym_with] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_debugger] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_throw] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_case] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LTtemplate_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_class] = ACTIONS(922), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(922), - [sym_optional_chain] = ACTIONS(924), - [anon_sym_new] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_instanceof] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_typeof] = ACTIONS(922), - [anon_sym_void] = ACTIONS(922), - [anon_sym_delete] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(922), - [sym_number] = ACTIONS(922), - [sym_private_property_identifier] = ACTIONS(922), - [sym_this] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), - [sym_undefined] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_static] = ACTIONS(922), - [anon_sym_get] = ACTIONS(922), - [anon_sym_set] = ACTIONS(922), - [sym__automatic_semicolon] = ACTIONS(1021), - [sym__ternary_qmark] = ACTIONS(928), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [197] = { - [ts_builtin_sym_end] = ACTIONS(977), - [sym_identifier] = ACTIONS(906), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_import] = ACTIONS(906), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_await] = ACTIONS(906), - [anon_sym_in] = ACTIONS(908), - [anon_sym_while] = ACTIONS(906), - [anon_sym_do] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [anon_sym_with] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_debugger] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_throw] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_LTtemplate_GT] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_DOT] = ACTIONS(908), - [anon_sym_class] = ACTIONS(906), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(906), - [sym_optional_chain] = ACTIONS(908), - [anon_sym_new] = ACTIONS(906), - [anon_sym_AMP_AMP] = ACTIONS(908), - [anon_sym_PIPE_PIPE] = ACTIONS(908), - [anon_sym_GT_GT] = ACTIONS(908), - [anon_sym_GT_GT_GT] = ACTIONS(908), - [anon_sym_LT_LT] = ACTIONS(908), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_CARET] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(908), - [anon_sym_STAR_STAR] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_QMARK_QMARK] = ACTIONS(908), - [anon_sym_instanceof] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [anon_sym_typeof] = ACTIONS(906), - [anon_sym_void] = ACTIONS(906), - [anon_sym_delete] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_DASH_DASH] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(906), - [sym_number] = ACTIONS(906), - [sym_private_property_identifier] = ACTIONS(906), - [sym_this] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_undefined] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(1023), - [sym__ternary_qmark] = ACTIONS(912), + [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), + [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), }, [198] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2131), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(2014), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(1025), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_RBRACK] = ACTIONS(1025), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1388), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2072), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2679), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1894), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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), + [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(1059), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [200] = { - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(914), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(914), - [anon_sym_import] = ACTIONS(914), - [anon_sym_var] = ACTIONS(914), - [anon_sym_let] = ACTIONS(914), - [anon_sym_const] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_await] = ACTIONS(914), - [anon_sym_in] = ACTIONS(916), - [anon_sym_while] = ACTIONS(914), - [anon_sym_do] = ACTIONS(914), - [anon_sym_try] = ACTIONS(914), - [anon_sym_with] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_debugger] = ACTIONS(914), - [anon_sym_return] = ACTIONS(914), - [anon_sym_throw] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LTtemplate_GT] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_GT] = ACTIONS(916), - [anon_sym_DOT] = ACTIONS(916), - [anon_sym_class] = ACTIONS(914), - [anon_sym_async] = ACTIONS(914), - [anon_sym_function] = ACTIONS(914), - [sym_optional_chain] = ACTIONS(916), - [anon_sym_new] = ACTIONS(914), - [anon_sym_AMP_AMP] = ACTIONS(916), - [anon_sym_PIPE_PIPE] = ACTIONS(916), - [anon_sym_GT_GT] = ACTIONS(916), - [anon_sym_GT_GT_GT] = ACTIONS(916), - [anon_sym_LT_LT] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_CARET] = ACTIONS(916), - [anon_sym_PIPE] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_PERCENT] = ACTIONS(916), - [anon_sym_STAR_STAR] = ACTIONS(916), - [anon_sym_LT_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ] = ACTIONS(916), - [anon_sym_EQ_EQ_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ_EQ] = ACTIONS(916), - [anon_sym_GT_EQ] = ACTIONS(916), - [anon_sym_QMARK_QMARK] = ACTIONS(916), - [anon_sym_instanceof] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_TILDE] = ACTIONS(914), - [anon_sym_typeof] = ACTIONS(914), - [anon_sym_void] = ACTIONS(914), - [anon_sym_delete] = ACTIONS(914), - [anon_sym_PLUS_PLUS] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [anon_sym_SQUOTE] = ACTIONS(914), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(914), - [sym_number] = ACTIONS(914), - [sym_private_property_identifier] = ACTIONS(914), - [sym_this] = ACTIONS(914), - [sym_super] = ACTIONS(914), - [sym_true] = ACTIONS(914), - [sym_false] = ACTIONS(914), - [sym_null] = ACTIONS(914), - [sym_undefined] = ACTIONS(914), - [anon_sym_AT] = ACTIONS(914), - [anon_sym_static] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [sym__automatic_semicolon] = ACTIONS(1029), - [sym__ternary_qmark] = ACTIONS(920), + [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), + [sym_html_comment] = ACTIONS(5), }, [201] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), - [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(882), - [sym__ternary_qmark] = ACTIONS(882), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [202] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_import] = ACTIONS(880), - [anon_sym_var] = ACTIONS(880), - [anon_sym_let] = ACTIONS(880), - [anon_sym_const] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_switch] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_await] = ACTIONS(880), - [anon_sym_in] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_do] = ACTIONS(880), - [anon_sym_try] = ACTIONS(880), - [anon_sym_with] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_debugger] = ACTIONS(880), - [anon_sym_return] = ACTIONS(880), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_class] = ACTIONS(880), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(880), - [sym_optional_chain] = ACTIONS(880), - [anon_sym_new] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_GT_GT] = ACTIONS(880), - [anon_sym_GT_GT_GT] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(880), - [anon_sym_STAR_STAR] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_EQ_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_QMARK_QMARK] = ACTIONS(880), - [anon_sym_instanceof] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_TILDE] = ACTIONS(880), - [anon_sym_typeof] = ACTIONS(880), - [anon_sym_void] = ACTIONS(880), - [anon_sym_delete] = ACTIONS(880), - [anon_sym_PLUS_PLUS] = ACTIONS(880), - [anon_sym_DASH_DASH] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(880), - [sym_number] = ACTIONS(880), - [sym_private_property_identifier] = ACTIONS(880), - [sym_this] = ACTIONS(880), - [sym_super] = ACTIONS(880), - [sym_true] = ACTIONS(880), - [sym_false] = ACTIONS(880), - [sym_null] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [anon_sym_AT] = ACTIONS(880), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(1031), - [sym__ternary_qmark] = ACTIONS(882), + [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_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_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(1067), + [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), }, [203] = { - [ts_builtin_sym_end] = ACTIONS(848), - [sym_identifier] = ACTIONS(846), - [anon_sym_export] = ACTIONS(846), - [anon_sym_STAR] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_import] = ACTIONS(846), - [anon_sym_var] = ACTIONS(846), - [anon_sym_let] = ACTIONS(846), - [anon_sym_const] = ACTIONS(846), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(846), - [anon_sym_for] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_await] = ACTIONS(846), - [anon_sym_in] = ACTIONS(846), - [anon_sym_while] = ACTIONS(846), - [anon_sym_do] = ACTIONS(846), - [anon_sym_try] = ACTIONS(846), - [anon_sym_with] = ACTIONS(846), - [anon_sym_break] = ACTIONS(846), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_debugger] = ACTIONS(846), - [anon_sym_return] = ACTIONS(846), - [anon_sym_throw] = ACTIONS(846), - [anon_sym_SEMI] = ACTIONS(846), - [anon_sym_yield] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_LTtemplate_GT] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(846), - [anon_sym_DOT] = ACTIONS(846), - [anon_sym_class] = ACTIONS(846), - [anon_sym_async] = ACTIONS(846), - [anon_sym_function] = ACTIONS(846), - [sym_optional_chain] = ACTIONS(846), - [anon_sym_new] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(846), - [anon_sym_PIPE_PIPE] = ACTIONS(846), - [anon_sym_GT_GT] = ACTIONS(846), - [anon_sym_GT_GT_GT] = ACTIONS(846), - [anon_sym_LT_LT] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - [anon_sym_CARET] = ACTIONS(846), - [anon_sym_PIPE] = ACTIONS(846), - [anon_sym_PLUS] = ACTIONS(846), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_SLASH] = ACTIONS(846), - [anon_sym_PERCENT] = ACTIONS(846), - [anon_sym_STAR_STAR] = ACTIONS(846), - [anon_sym_LT_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ] = ACTIONS(846), - [anon_sym_EQ_EQ_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ] = ACTIONS(846), - [anon_sym_BANG_EQ_EQ] = ACTIONS(846), - [anon_sym_GT_EQ] = ACTIONS(846), - [anon_sym_QMARK_QMARK] = ACTIONS(846), - [anon_sym_instanceof] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(846), - [anon_sym_void] = ACTIONS(846), - [anon_sym_delete] = ACTIONS(846), - [anon_sym_PLUS_PLUS] = ACTIONS(846), - [anon_sym_DASH_DASH] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_SQUOTE] = ACTIONS(846), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(846), - [sym_number] = ACTIONS(846), - [sym_private_property_identifier] = ACTIONS(846), - [sym_this] = ACTIONS(846), - [sym_super] = ACTIONS(846), - [sym_true] = ACTIONS(846), - [sym_false] = ACTIONS(846), - [sym_null] = ACTIONS(846), - [sym_undefined] = ACTIONS(846), - [anon_sym_AT] = ACTIONS(846), - [anon_sym_static] = ACTIONS(846), - [anon_sym_get] = ACTIONS(846), - [anon_sym_set] = ACTIONS(846), - [sym__automatic_semicolon] = ACTIONS(848), - [sym__ternary_qmark] = ACTIONS(848), - }, - [204] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1359), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2072), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2730), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(1894), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), - }, - [205] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_identifier] = ACTIONS(820), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_import] = ACTIONS(820), - [anon_sym_var] = ACTIONS(820), - [anon_sym_let] = ACTIONS(820), - [anon_sym_const] = ACTIONS(820), - [anon_sym_if] = ACTIONS(820), - [anon_sym_switch] = ACTIONS(820), - [anon_sym_for] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(820), - [anon_sym_in] = ACTIONS(820), - [anon_sym_while] = ACTIONS(820), - [anon_sym_do] = ACTIONS(820), - [anon_sym_try] = ACTIONS(820), - [anon_sym_with] = ACTIONS(820), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_debugger] = ACTIONS(820), - [anon_sym_return] = ACTIONS(820), - [anon_sym_throw] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LTtemplate_GT] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_class] = ACTIONS(820), - [anon_sym_async] = ACTIONS(820), - [anon_sym_function] = ACTIONS(820), - [sym_optional_chain] = ACTIONS(820), - [anon_sym_new] = ACTIONS(820), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(820), - [anon_sym_GT_EQ] = ACTIONS(820), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_typeof] = ACTIONS(820), - [anon_sym_void] = ACTIONS(820), - [anon_sym_delete] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_SQUOTE] = ACTIONS(820), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(820), - [sym_number] = ACTIONS(820), - [sym_private_property_identifier] = ACTIONS(820), - [sym_this] = ACTIONS(820), - [sym_super] = ACTIONS(820), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [sym__automatic_semicolon] = ACTIONS(1033), - [sym__ternary_qmark] = ACTIONS(840), - }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(952), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_import] = ACTIONS(860), - [anon_sym_var] = ACTIONS(860), - [anon_sym_let] = ACTIONS(860), - [anon_sym_const] = ACTIONS(860), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_for] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(860), - [anon_sym_await] = ACTIONS(860), - [anon_sym_in] = ACTIONS(862), - [anon_sym_while] = ACTIONS(860), - [anon_sym_do] = ACTIONS(860), - [anon_sym_try] = ACTIONS(860), - [anon_sym_with] = ACTIONS(860), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(860), - [anon_sym_return] = ACTIONS(860), - [anon_sym_throw] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LTtemplate_GT] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_class] = ACTIONS(860), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(860), - [sym_optional_chain] = ACTIONS(862), - [anon_sym_new] = ACTIONS(860), - [anon_sym_AMP_AMP] = ACTIONS(862), - [anon_sym_PIPE_PIPE] = ACTIONS(862), - [anon_sym_GT_GT] = ACTIONS(862), - [anon_sym_GT_GT_GT] = ACTIONS(862), - [anon_sym_LT_LT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_STAR_STAR] = ACTIONS(862), - [anon_sym_LT_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ] = ACTIONS(862), - [anon_sym_EQ_EQ_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ] = ACTIONS(862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(862), - [anon_sym_GT_EQ] = ACTIONS(862), - [anon_sym_QMARK_QMARK] = ACTIONS(862), - [anon_sym_instanceof] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(860), - [anon_sym_typeof] = ACTIONS(860), - [anon_sym_void] = ACTIONS(860), - [anon_sym_delete] = ACTIONS(860), - [anon_sym_PLUS_PLUS] = ACTIONS(860), - [anon_sym_DASH_DASH] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_SQUOTE] = ACTIONS(860), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(860), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [sym_this] = ACTIONS(860), - [sym_super] = ACTIONS(860), - [sym_true] = ACTIONS(860), - [sym_false] = ACTIONS(860), - [sym_null] = ACTIONS(860), - [sym_undefined] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_static] = ACTIONS(860), - [anon_sym_get] = ACTIONS(860), - [anon_sym_set] = ACTIONS(860), - [sym__automatic_semicolon] = ACTIONS(1035), - [sym__ternary_qmark] = ACTIONS(866), - }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_import] = ACTIONS(922), - [anon_sym_var] = ACTIONS(922), - [anon_sym_let] = ACTIONS(922), - [anon_sym_const] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_await] = ACTIONS(922), - [anon_sym_in] = ACTIONS(924), - [anon_sym_while] = ACTIONS(922), - [anon_sym_do] = ACTIONS(922), - [anon_sym_try] = ACTIONS(922), - [anon_sym_with] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_debugger] = ACTIONS(922), - [anon_sym_return] = ACTIONS(922), - [anon_sym_throw] = ACTIONS(922), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_LTtemplate_GT] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_class] = ACTIONS(922), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(922), - [sym_optional_chain] = ACTIONS(924), - [anon_sym_new] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(924), - [anon_sym_PIPE_PIPE] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_GT_GT_GT] = ACTIONS(924), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_STAR_STAR] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_QMARK_QMARK] = ACTIONS(924), - [anon_sym_instanceof] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_typeof] = ACTIONS(922), - [anon_sym_void] = ACTIONS(922), - [anon_sym_delete] = ACTIONS(922), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(922), - [anon_sym_SQUOTE] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(922), - [sym_number] = ACTIONS(922), - [sym_private_property_identifier] = ACTIONS(922), - [sym_this] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_true] = ACTIONS(922), - [sym_false] = ACTIONS(922), - [sym_null] = ACTIONS(922), - [sym_undefined] = ACTIONS(922), - [anon_sym_AT] = ACTIONS(922), - [anon_sym_static] = ACTIONS(922), - [anon_sym_get] = ACTIONS(922), - [anon_sym_set] = ACTIONS(922), - [sym__automatic_semicolon] = ACTIONS(1037), - [sym__ternary_qmark] = ACTIONS(928), - }, - [208] = { - [ts_builtin_sym_end] = ACTIONS(886), - [sym_identifier] = ACTIONS(884), - [anon_sym_export] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_COMMA] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_import] = ACTIONS(884), - [anon_sym_var] = ACTIONS(884), - [anon_sym_let] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_switch] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_await] = ACTIONS(884), - [anon_sym_in] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(884), - [anon_sym_try] = ACTIONS(884), - [anon_sym_with] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_debugger] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_throw] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_LTtemplate_GT] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(884), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(884), - [anon_sym_function] = ACTIONS(884), - [sym_optional_chain] = ACTIONS(884), - [anon_sym_new] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_GT_GT_GT] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_SLASH] = ACTIONS(884), - [anon_sym_PERCENT] = ACTIONS(884), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_EQ_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_QMARK_QMARK] = ACTIONS(884), - [anon_sym_instanceof] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_TILDE] = ACTIONS(884), - [anon_sym_typeof] = ACTIONS(884), - [anon_sym_void] = ACTIONS(884), - [anon_sym_delete] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(884), - [anon_sym_SQUOTE] = ACTIONS(884), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(884), - [sym_number] = ACTIONS(884), - [sym_private_property_identifier] = ACTIONS(884), - [sym_this] = ACTIONS(884), - [sym_super] = ACTIONS(884), - [sym_true] = ACTIONS(884), - [sym_false] = ACTIONS(884), - [sym_null] = ACTIONS(884), - [sym_undefined] = ACTIONS(884), - [anon_sym_AT] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), - [anon_sym_get] = ACTIONS(884), - [anon_sym_set] = ACTIONS(884), - [sym__automatic_semicolon] = ACTIONS(886), - [sym__ternary_qmark] = ACTIONS(886), - }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_identifier] = ACTIONS(852), - [anon_sym_export] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(854), - [anon_sym_LBRACE] = ACTIONS(852), - [anon_sym_COMMA] = ACTIONS(854), - [anon_sym_RBRACE] = ACTIONS(852), - [anon_sym_import] = ACTIONS(852), - [anon_sym_var] = ACTIONS(852), - [anon_sym_let] = ACTIONS(852), - [anon_sym_const] = ACTIONS(852), - [anon_sym_if] = ACTIONS(852), - [anon_sym_switch] = ACTIONS(852), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_await] = ACTIONS(852), - [anon_sym_in] = ACTIONS(854), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(852), - [anon_sym_try] = ACTIONS(852), - [anon_sym_with] = ACTIONS(852), - [anon_sym_break] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_debugger] = ACTIONS(852), - [anon_sym_return] = ACTIONS(852), - [anon_sym_throw] = ACTIONS(852), - [anon_sym_SEMI] = ACTIONS(852), - [anon_sym_yield] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_LTtemplate_GT] = ACTIONS(852), - [anon_sym_LT] = ACTIONS(852), - [anon_sym_GT] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(854), - [anon_sym_class] = ACTIONS(852), - [anon_sym_async] = ACTIONS(852), - [anon_sym_function] = ACTIONS(852), - [sym_optional_chain] = ACTIONS(854), - [anon_sym_new] = ACTIONS(852), - [anon_sym_AMP_AMP] = ACTIONS(854), - [anon_sym_PIPE_PIPE] = ACTIONS(854), - [anon_sym_GT_GT] = ACTIONS(854), - [anon_sym_GT_GT_GT] = ACTIONS(854), - [anon_sym_LT_LT] = ACTIONS(854), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_CARET] = ACTIONS(854), - [anon_sym_PIPE] = ACTIONS(854), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_SLASH] = ACTIONS(852), - [anon_sym_PERCENT] = ACTIONS(854), - [anon_sym_STAR_STAR] = ACTIONS(854), - [anon_sym_LT_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ] = ACTIONS(854), - [anon_sym_EQ_EQ_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ] = ACTIONS(854), - [anon_sym_BANG_EQ_EQ] = ACTIONS(854), - [anon_sym_GT_EQ] = ACTIONS(854), - [anon_sym_QMARK_QMARK] = ACTIONS(854), - [anon_sym_instanceof] = ACTIONS(854), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(852), - [anon_sym_typeof] = ACTIONS(852), - [anon_sym_void] = ACTIONS(852), - [anon_sym_delete] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(852), - [anon_sym_DASH_DASH] = ACTIONS(852), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(852), - [sym_number] = ACTIONS(852), - [sym_private_property_identifier] = ACTIONS(852), - [sym_this] = ACTIONS(852), - [sym_super] = ACTIONS(852), - [sym_true] = ACTIONS(852), - [sym_false] = ACTIONS(852), - [sym_null] = ACTIONS(852), - [sym_undefined] = ACTIONS(852), - [anon_sym_AT] = ACTIONS(852), - [anon_sym_static] = ACTIONS(852), - [anon_sym_get] = ACTIONS(852), - [anon_sym_set] = ACTIONS(852), - [sym__automatic_semicolon] = ACTIONS(1039), - [sym__ternary_qmark] = ACTIONS(858), - }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(878), - [sym_identifier] = ACTIONS(876), - [anon_sym_export] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_import] = ACTIONS(876), - [anon_sym_var] = ACTIONS(876), - [anon_sym_let] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_switch] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_await] = ACTIONS(876), - [anon_sym_in] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_do] = ACTIONS(876), - [anon_sym_try] = ACTIONS(876), - [anon_sym_with] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_throw] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_LTtemplate_GT] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_class] = ACTIONS(876), - [anon_sym_async] = ACTIONS(876), - [anon_sym_function] = ACTIONS(876), - [sym_optional_chain] = ACTIONS(876), - [anon_sym_new] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_GT_GT_GT] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_EQ_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_QMARK_QMARK] = ACTIONS(876), - [anon_sym_instanceof] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_TILDE] = ACTIONS(876), - [anon_sym_typeof] = ACTIONS(876), - [anon_sym_void] = ACTIONS(876), - [anon_sym_delete] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_DASH_DASH] = ACTIONS(876), - [anon_sym_DQUOTE] = ACTIONS(876), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(876), - [sym_number] = ACTIONS(876), - [sym_private_property_identifier] = ACTIONS(876), - [sym_this] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_true] = ACTIONS(876), - [sym_false] = ACTIONS(876), - [sym_null] = ACTIONS(876), - [sym_undefined] = ACTIONS(876), - [anon_sym_AT] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(878), - [sym__ternary_qmark] = ACTIONS(878), - }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(973), + [sym_comment] = STATE(203), + [ts_builtin_sym_end] = ACTIONS(1041), [sym_identifier] = ACTIONS(896), [anon_sym_export] = ACTIONS(896), [anon_sym_STAR] = ACTIONS(898), @@ -36186,7 +35831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(896), [anon_sym_DQUOTE] = ACTIONS(896), [anon_sym_SQUOTE] = ACTIONS(896), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(896), [sym_number] = ACTIONS(896), [sym_private_property_identifier] = ACTIONS(896), @@ -36200,4934 +35845,5647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(896), [anon_sym_get] = ACTIONS(896), [anon_sym_set] = ACTIONS(896), - [sym__automatic_semicolon] = ACTIONS(1041), + [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_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_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(1073), + [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), + }, + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(1075), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(951), + [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), + [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), + [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), + [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), + [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), + }, + [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), + [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), + [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__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(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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(951), + [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), + [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), + [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), + [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), + [sym_html_comment] = ACTIONS(5), + }, + [211] = { + [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] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(868), - [anon_sym_export] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_LBRACE] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_import] = ACTIONS(868), - [anon_sym_var] = ACTIONS(868), - [anon_sym_let] = ACTIONS(868), - [anon_sym_const] = ACTIONS(868), - [anon_sym_if] = ACTIONS(868), - [anon_sym_switch] = ACTIONS(868), - [anon_sym_for] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_await] = ACTIONS(868), - [anon_sym_in] = ACTIONS(870), - [anon_sym_while] = ACTIONS(868), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(868), - [anon_sym_with] = ACTIONS(868), - [anon_sym_break] = ACTIONS(868), - [anon_sym_continue] = ACTIONS(868), - [anon_sym_debugger] = ACTIONS(868), - [anon_sym_return] = ACTIONS(868), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_yield] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_LTtemplate_GT] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_class] = ACTIONS(868), - [anon_sym_async] = ACTIONS(868), - [anon_sym_function] = ACTIONS(868), - [sym_optional_chain] = ACTIONS(870), - [anon_sym_new] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(870), - [anon_sym_PIPE_PIPE] = ACTIONS(870), - [anon_sym_GT_GT] = ACTIONS(870), - [anon_sym_GT_GT_GT] = ACTIONS(870), - [anon_sym_LT_LT] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), - [anon_sym_SLASH] = ACTIONS(868), - [anon_sym_PERCENT] = ACTIONS(870), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_EQ_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ_EQ] = ACTIONS(870), - [anon_sym_GT_EQ] = ACTIONS(870), - [anon_sym_QMARK_QMARK] = ACTIONS(870), - [anon_sym_instanceof] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(868), - [anon_sym_TILDE] = ACTIONS(868), - [anon_sym_typeof] = ACTIONS(868), - [anon_sym_void] = ACTIONS(868), - [anon_sym_delete] = ACTIONS(868), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(868), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_SQUOTE] = ACTIONS(868), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(868), - [sym_number] = ACTIONS(868), - [sym_private_property_identifier] = ACTIONS(868), - [sym_this] = ACTIONS(868), - [sym_super] = ACTIONS(868), - [sym_true] = ACTIONS(868), - [sym_false] = ACTIONS(868), - [sym_null] = ACTIONS(868), - [sym_undefined] = ACTIONS(868), - [anon_sym_AT] = ACTIONS(868), - [anon_sym_static] = ACTIONS(868), - [anon_sym_get] = ACTIONS(868), - [anon_sym_set] = ACTIONS(868), - [sym__automatic_semicolon] = ACTIONS(1043), - [sym__ternary_qmark] = ACTIONS(874), + [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_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(1081), + [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), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(965), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_import] = ACTIONS(888), - [anon_sym_var] = ACTIONS(888), - [anon_sym_let] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_await] = ACTIONS(888), - [anon_sym_in] = ACTIONS(890), - [anon_sym_while] = ACTIONS(888), - [anon_sym_do] = ACTIONS(888), - [anon_sym_try] = ACTIONS(888), - [anon_sym_with] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_debugger] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_throw] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_LTtemplate_GT] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_class] = ACTIONS(888), - [anon_sym_async] = ACTIONS(888), - [anon_sym_function] = ACTIONS(888), - [sym_optional_chain] = ACTIONS(890), - [anon_sym_new] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(890), - [anon_sym_GT_GT] = ACTIONS(890), - [anon_sym_GT_GT_GT] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_STAR_STAR] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ] = ACTIONS(890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(890), - [anon_sym_QMARK_QMARK] = ACTIONS(890), - [anon_sym_instanceof] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_TILDE] = ACTIONS(888), - [anon_sym_typeof] = ACTIONS(888), - [anon_sym_void] = ACTIONS(888), - [anon_sym_delete] = ACTIONS(888), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(888), - [sym_number] = ACTIONS(888), - [sym_private_property_identifier] = ACTIONS(888), - [sym_this] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_true] = ACTIONS(888), - [sym_false] = ACTIONS(888), - [sym_null] = ACTIONS(888), - [sym_undefined] = ACTIONS(888), - [anon_sym_AT] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [sym__automatic_semicolon] = ACTIONS(1045), - [sym__ternary_qmark] = ACTIONS(894), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1311), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(2108), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(2110), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [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), + [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), }, [215] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1306), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(1989), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(1988), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1053), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1330), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(2009), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(2056), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1236), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(2063), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(1057), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_RBRACK] = ACTIONS(1057), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [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_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), }, [218] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2072), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(1894), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [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), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_COMMA] = ACTIONS(1093), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(1093), + [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), + [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), }, [219] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1238), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(1994), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(1995), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1059), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2302), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(2100), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [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_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1298), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(2033), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [aux_sym_array_repeat1] = STATE(2034), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1063), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2302), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(2100), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(947), + [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_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), + [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), + [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(243), - [sym_empty_statement] = STATE(243), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), + [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_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), + [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), + [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2302), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(2100), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [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), + [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_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), + [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), + [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(240), - [sym_empty_statement] = STATE(240), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [sym_import] = STATE(1785), + [sym_expression_statement] = STATE(241), + [sym_empty_statement] = STATE(241), + [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(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_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_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_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), }, [226] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1344), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1781), - [sym_assignment_pattern] = STATE(2344), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1781), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1032), - [sym_subscript_expression] = STATE(1032), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1781), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [sym_pattern] = STATE(2054), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(798), - [anon_sym_export] = ACTIONS(800), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(806), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(808), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(800), - [anon_sym_get] = ACTIONS(800), - [anon_sym_set] = ACTIONS(800), + [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), + [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_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), }, [227] = { - [sym_import] = STATE(1268), + [sym_import] = STATE(1785), [sym_expression_statement] = STATE(242), [sym_empty_statement] = STATE(242), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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(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_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_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_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), }, [228] = { - [sym_import] = STATE(1268), - [sym_expression_statement] = STATE(241), - [sym_empty_statement] = STATE(241), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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(1268), - [sym_expression_statement] = STATE(239), - [sym_empty_statement] = STATE(239), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1336), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2282), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [sym_import] = STATE(1785), + [sym_expression_statement] = STATE(240), + [sym_empty_statement] = STATE(240), + [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(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_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_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_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), }, [230] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1798), - [sym_assignment_pattern] = STATE(2344), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1798), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1798), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [sym_pattern] = STATE(2054), - [sym_rest_pattern] = STATE(1849), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(934), - [anon_sym_export] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(946), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [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), + [sym_identifier] = ACTIONS(662), + [anon_sym_export] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(1103), + [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), }, [231] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1353), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(2719), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2719), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(1067), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [sym_import] = STATE(1785), + [sym_expression_statement] = STATE(238), + [sym_empty_statement] = STATE(238), + [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(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_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_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_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), }, [232] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1371), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_spread_element] = STATE(2755), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2755), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1096), + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1048), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2022), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2022), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2022), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(1071), - [anon_sym_export] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_import] = ACTIONS(648), - [anon_sym_var] = ACTIONS(1077), - [anon_sym_let] = ACTIONS(1079), - [anon_sym_const] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(1083), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1073), - [anon_sym_get] = ACTIONS(1073), - [anon_sym_set] = ACTIONS(1073), + [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_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_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_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_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__automatic_semicolon] = ACTIONS(1107), + [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1321), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2185), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(1089), + [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_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_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_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_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__automatic_semicolon] = ACTIONS(1111), + [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1261), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2410), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(1093), + [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_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_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_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_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__automatic_semicolon] = ACTIONS(1115), + [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1286), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2495), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(1097), + [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_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_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_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_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__automatic_semicolon] = ACTIONS(1119), + [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1251), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2280), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(1101), + [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_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_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_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_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__automatic_semicolon] = ACTIONS(1123), + [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1334), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2301), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - [sym__automatic_semicolon] = ACTIONS(1105), + [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_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_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_RPAREN] = ACTIONS(1125), + [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), }, [239] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1389), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2690), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1107), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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_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_RPAREN] = ACTIONS(1127), + [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), }, [240] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1376), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2764), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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_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_RPAREN] = ACTIONS(1129), + [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), }, [241] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1368), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2745), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1111), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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_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_RPAREN] = ACTIONS(1131), + [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), }, [242] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1340), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2687), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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_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_RPAREN] = ACTIONS(1133), + [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), }, [243] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1362), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2710), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(1115), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_import] = ACTIONS(672), + [anon_sym_var] = ACTIONS(1141), + [anon_sym_let] = ACTIONS(1143), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_LTtemplate_GT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_class] = ACTIONS(684), + [anon_sym_async] = ACTIONS(1149), + [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(1151), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(1137), + [anon_sym_get] = ACTIONS(1137), + [anon_sym_set] = ACTIONS(1137), + [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1149), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1399), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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_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), + [anon_sym_LBRACE] = ACTIONS(1153), + [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), }, [245] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1126), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1403), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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_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_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), }, [246] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1447), - [sym_primary_expression] = STATE(1171), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1204), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(995), - [sym_subscript_expression] = STATE(995), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(1119), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(1123), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), + [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_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), + [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), }, [247] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1305), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1210), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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_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), + [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), }, [248] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1257), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1233), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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(1268), - [sym_statement_block] = STATE(1254), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1232), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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_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), }, [250] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1352), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2684), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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), + [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), }, [251] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1360), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2731), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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_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), }, [252] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1333), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2303), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [253] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1274), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2494), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [254] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1396), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2677), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [255] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1106), + [sym_import] = STATE(1785), + [sym_statement_block] = STATE(1344), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1411), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + [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), }, [256] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1126), + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1127), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(31), + [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(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_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_SLASH] = ACTIONS(73), + [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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [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), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(1159), + [anon_sym_get] = ACTIONS(1159), + [anon_sym_set] = ACTIONS(1159), + [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1381), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2688), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [258] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1124), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1125), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [259] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1374), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2689), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [260] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1121), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1122), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [261] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1393), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2691), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(1153), + [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), }, [262] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1263), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1192), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [263] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1355), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2721), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(1153), + [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), }, [264] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1120), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1390), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1357), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2671), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - }, - [266] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1343), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2670), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [sym_identifier] = ACTIONS(778), + [anon_sym_export] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(1153), + [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), + }, + [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), + [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), }, [267] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1292), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2321), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [268] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1263), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1180), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [269] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1305), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1224), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [270] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1287), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1179), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [271] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1121), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1428), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -41139,76 +41497,79 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, - [272] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1124), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1429), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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_class] = ACTIONS(684), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -41220,238 +41581,415 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + }, + [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), + [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), + }, + [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(1268), - [sym_statement_block] = STATE(1254), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1173), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [274] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1356), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2723), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [275] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1149), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1436), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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_class] = ACTIONS(684), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -41463,1453 +42001,1087 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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(1096), - [sym_statement_block] = STATE(1126), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1342), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [277] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1063), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1058), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(1133), - [anon_sym_export] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(1137), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1135), - [anon_sym_get] = ACTIONS(1135), - [anon_sym_set] = ACTIONS(1135), + [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_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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1394), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2703), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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_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), }, [279] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1106), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1070), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1268), - [sym_statement_block] = STATE(1257), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1174), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1375), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2702), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), + [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), + [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(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [aux_sym_export_statement_repeat1] = STATE(1949), + [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_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), }, [282] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1063), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1058), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(1137), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [283] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1271), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2187), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [284] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1289), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2279), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [285] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1314), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_sequence_expression] = STATE(2412), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1169), + [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_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), + [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(1169), + [anon_sym_get] = ACTIONS(1169), + [anon_sym_set] = ACTIONS(1169), + [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1149), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1150), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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_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), + [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), }, [287] = { - [sym_import] = STATE(1268), + [sym_import] = STATE(1751), + [sym_statement_block] = STATE(1122), [sym_parenthesized_expression] = STATE(995), - [sym_expression] = STATE(1447), - [sym_primary_expression] = STATE(1171), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1204), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(1141), - [anon_sym_export] = ACTIONS(1143), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(1123), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(1145), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1143), - [anon_sym_get] = ACTIONS(1143), - [anon_sym_set] = ACTIONS(1143), + [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), + [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), }, [288] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1397), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2681), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - }, - [289] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1373), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2756), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - }, - [290] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1063), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1058), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(1147), - [anon_sym_export] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(1137), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(1151), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_get] = ACTIONS(1149), - [anon_sym_set] = ACTIONS(1149), - }, - [291] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1120), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1114), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), + [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(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - }, - [292] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1106), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1349), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), - }, - [293] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1120), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1425), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [aux_sym_export_statement_repeat1] = STATE(1949), + [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_class] = ACTIONS(684), [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -42921,723 +43093,1002 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + }, + [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), + [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), + }, + [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), + [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_LBRACK] = ACTIONS(57), + [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(1181), + [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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [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), + [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), + [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), + }, + [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), + [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), }, [294] = { - [sym_import] = STATE(1096), - [sym_statement_block] = STATE(1121), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1346), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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(1096), - [sym_statement_block] = STATE(1124), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1345), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [296] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1392), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2765), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [297] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1287), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1184), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [298] = { - [sym_import] = STATE(1268), - [sym_statement_block] = STATE(1337), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1227), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1370), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(2754), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1268), - [sym_statement_block] = STATE(1337), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1208), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - }, - [301] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1108), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_sequence_expression] = STATE(1957), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), + [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(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - }, - [302] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1418), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -43649,3755 +44100,4145 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + [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), + }, + [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), + [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), }, [303] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1203), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1225), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1095), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1098), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1195), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [308] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1099), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [309] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1102), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [310] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1341), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [311] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1435), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1439), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1054), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1089), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1088), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [316] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1087), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [317] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1282), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [318] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1350), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [319] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1109), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [320] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1363), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [321] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1364), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [322] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1112), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [323] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1365), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [324] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1138), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [325] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1377), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [326] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1132), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [327] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1165), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [328] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1378), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [329] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1379), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [330] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1427), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [331] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1157), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [332] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1185), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1055), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + [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), }, [334] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1056), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + [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), }, [335] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1380), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [336] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1151), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1187), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [338] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1437), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + [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), }, [339] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1054), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(774), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1228), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [341] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1069), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [342] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1189), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [343] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1056), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [344] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1055), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [345] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1177), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [346] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1348), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [347] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1119), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [348] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1176), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [349] = { - [sym_import] = STATE(1096), + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1438), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -47409,3115 +48250,2236 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - }, - [350] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1338), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1434), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1186), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [353] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1181), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [354] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1201), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [355] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1170), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [356] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1186), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1885), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1885), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1039), - [sym_subscript_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1885), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(1153), - [anon_sym_export] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(1157), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(1159), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1155), - [anon_sym_get] = ACTIONS(1155), - [anon_sym_set] = ACTIONS(1155), + [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), + [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), }, [357] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1410), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1382), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [359] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1178), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1383), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [361] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1384), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [362] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1385), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [363] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1386), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [364] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1194), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [365] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1391), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [366] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1398), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [367] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1190), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [368] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1093), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [369] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1191), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [370] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1231), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [371] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1197), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [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), }, [372] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1400), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [373] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1196), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [374] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1183), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [375] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1198), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [376] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1056), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), - }, - [377] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1055), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), - }, - [378] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1226), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [379] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1222), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [380] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1199), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - }, - [381] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1220), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [382] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1218), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [383] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1407), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - }, - [384] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1202), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - }, - [385] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1169), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [386] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1167), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - }, - [387] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1090), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - }, - [388] = { - [sym_import] = STATE(1096), + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1412), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -50529,155 +50491,327 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - }, - [389] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1206), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), }, - [390] = { - [sym_import] = STATE(1096), + [378] = { + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1413), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -50689,155 +50823,161 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - }, - [391] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1217), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), }, - [392] = { - [sym_import] = STATE(1096), + [382] = { + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1414), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + }, + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -50849,75 +50989,576 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, - [393] = { - [sym_import] = STATE(1096), + [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), + [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), + }, + [385] = { + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1415), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -50929,155 +51570,161 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, - [394] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1344), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2729), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1191), + [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(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), + [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(1195), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_get] = ACTIONS(1191), + [anon_sym_set] = ACTIONS(1191), + [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), + [392] = { + [sym_import] = STATE(1751), + [sym_parenthesized_expression] = STATE(1064), [sym_expression] = STATE(1416), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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(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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -51089,79 +51736,414 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, - [396] = { - [sym_import] = STATE(1096), + [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), + [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), + }, + [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), + [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), + }, + [395] = { + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1417), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(764), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(770), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + [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), @@ -51169,315 +52151,410 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - }, - [397] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1214), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1104), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1223), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [400] = { - [sym_import] = STATE(1096), + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1419), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -51489,475 +52566,78 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - }, - [401] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1093), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), - }, - [402] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1207), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), }, [403] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1213), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [404] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1405), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), - }, - [405] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1212), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [406] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1421), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -51969,155 +52649,161 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, - [407] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1103), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, - [408] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1406), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52129,155 +52815,493 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), + }, + [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), + [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), + }, + [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), + [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), + }, + [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), + [anon_sym_import] = ACTIONS(672), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_await] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(951), + [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), + [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(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), }, [409] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1188), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [410] = { - [sym_import] = STATE(1096), + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1422), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + }, + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52289,75 +53313,161 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, - [411] = { - [sym_import] = STATE(1096), + [412] = { + [sym_import] = STATE(1785), [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1430), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), + [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(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + }, + [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), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52369,75 +53479,78 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1426), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52449,155 +53562,78 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, - [413] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1103), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), - }, - [414] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1404), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52609,155 +53645,78 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), - }, - [415] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1104), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1423), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52769,75 +53728,78 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, [417] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1047), - [sym_expression] = STATE(1424), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2705), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2705), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1593), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2705), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2704), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(754), - [anon_sym_export] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(760), - [anon_sym_yield] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), + [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), + [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(664), + [anon_sym_function] = ACTIONS(688), [anon_sym_new] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(768), [anon_sym_DASH] = ACTIONS(768), @@ -52849,1720 +53811,3407 @@ 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(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), + [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(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), + [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(85), - [anon_sym_static] = ACTIONS(756), - [anon_sym_get] = ACTIONS(756), - [anon_sym_set] = ACTIONS(756), + [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), }, [418] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1034), - [sym_expression] = STATE(1209), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2734), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2734), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1600), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2734), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2733), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(688), - [anon_sym_export] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(698), - [anon_sym_yield] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(704), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_typeof] = ACTIONS(710), - [anon_sym_void] = ACTIONS(710), - [anon_sym_delete] = ACTIONS(710), - [anon_sym_PLUS_PLUS] = ACTIONS(714), - [anon_sym_DASH_DASH] = ACTIONS(714), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(716), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(690), - [anon_sym_get] = ACTIONS(690), - [anon_sym_set] = ACTIONS(690), + [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), + [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), }, [419] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(1015), - [sym_expression] = STATE(1054), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2768), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2768), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1015), - [sym_subscript_expression] = STATE(1015), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1594), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2768), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), + [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(1976), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(668), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(668), - [anon_sym_typeof] = ACTIONS(668), - [anon_sym_void] = ACTIONS(668), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_PLUS_PLUS] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(672), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(682), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(684), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [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), }, [420] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1409), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(2728), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(2728), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(974), - [sym_subscript_expression] = STATE(974), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(2728), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(728), - [anon_sym_export] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(742), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(730), - [anon_sym_get] = ACTIONS(730), - [anon_sym_set] = ACTIONS(730), + [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), + [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), }, [421] = { - [sym_import] = STATE(1096), - [sym_parenthesized_expression] = STATE(974), - [sym_expression] = STATE(1446), - [sym_primary_expression] = STATE(1092), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1096), - [sym_object_pattern] = STATE(1808), - [sym_array] = STATE(1096), - [sym_array_pattern] = STATE(1808), - [sym_glimmer_template] = STATE(1094), - [sym_glimmer_opening_tag] = STATE(1882), - [sym_jsx_element] = STATE(1094), - [sym_jsx_opening_element] = STATE(1654), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1096), - [sym_function] = STATE(1096), - [sym_generator_function] = STATE(1096), - [sym_arrow_function] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(1033), - [sym_subscript_expression] = STATE(1033), - [sym_assignment_expression] = STATE(1094), - [sym__augmented_assignment_lhs] = STATE(1608), - [sym_augmented_assignment_expression] = STATE(1094), - [sym__destructuring_pattern] = STATE(1808), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1096), - [sym_template_string] = STATE(1096), - [sym_regex] = STATE(1096), - [sym_meta_property] = STATE(1096), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2767), - [aux_sym_export_statement_repeat1] = STATE(1976), - [sym_identifier] = ACTIONS(1161), - [anon_sym_export] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_import] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_await] = ACTIONS(736), - [anon_sym_yield] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_class] = ACTIONS(660), - [anon_sym_async] = ACTIONS(1165), - [anon_sym_function] = ACTIONS(664), - [anon_sym_new] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_typeof] = ACTIONS(746), - [anon_sym_void] = ACTIONS(746), - [anon_sym_delete] = ACTIONS(746), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(678), - [sym_number] = ACTIONS(680), - [sym_private_property_identifier] = ACTIONS(750), - [sym_this] = ACTIONS(680), - [sym_super] = ACTIONS(680), - [sym_true] = ACTIONS(680), - [sym_false] = ACTIONS(680), - [sym_null] = ACTIONS(680), - [sym_undefined] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1163), - [anon_sym_set] = ACTIONS(1163), + [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), + [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), }, [422] = { - [sym_import] = STATE(1268), - [sym_parenthesized_expression] = STATE(1029), - [sym_expression] = STATE(1182), - [sym_primary_expression] = STATE(1247), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1268), - [sym_object_pattern] = STATE(2656), - [sym_array] = STATE(1268), - [sym_array_pattern] = STATE(2656), - [sym_glimmer_template] = STATE(1246), - [sym_glimmer_opening_tag] = STATE(1921), - [sym_jsx_element] = STATE(1246), - [sym_jsx_opening_element] = STATE(1653), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1268), - [sym_function] = STATE(1268), - [sym_generator_function] = STATE(1268), - [sym_arrow_function] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(1029), - [sym_subscript_expression] = STATE(1029), - [sym_assignment_expression] = STATE(1246), - [sym__augmented_assignment_lhs] = STATE(1597), - [sym_augmented_assignment_expression] = STATE(1246), - [sym__destructuring_pattern] = STATE(2656), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1268), - [sym_template_string] = STATE(1268), - [sym_regex] = STATE(1268), - [sym_meta_property] = STATE(1268), - [sym_decorator] = STATE(2031), - [sym_formal_parameters] = STATE(2662), - [aux_sym_export_statement_repeat1] = STATE(1891), - [sym_identifier] = ACTIONS(720), - [anon_sym_export] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_import] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_class] = ACTIONS(702), - [anon_sym_async] = ACTIONS(726), - [anon_sym_function] = ACTIONS(706), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_SLASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_typeof] = ACTIONS(67), - [anon_sym_void] = ACTIONS(67), - [anon_sym_delete] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(77), - [sym_number] = ACTIONS(79), - [sym_private_property_identifier] = ACTIONS(81), - [sym_this] = ACTIONS(79), - [sym_super] = ACTIONS(79), - [sym_true] = ACTIONS(79), - [sym_false] = ACTIONS(79), - [sym_null] = ACTIONS(79), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(85), - [anon_sym_static] = ACTIONS(722), - [anon_sym_get] = ACTIONS(722), - [anon_sym_set] = ACTIONS(722), + [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), + [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), }, [423] = { - [sym_namespace_export] = STATE(2561), - [sym_export_clause] = STATE(1886), - [sym_declaration] = STATE(968), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_class_declaration] = STATE(971), - [sym_function_declaration] = STATE(971), - [sym_generator_function_declaration] = STATE(971), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1852), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_var] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_async] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [sym_html_comment] = ACTIONS(5), }, [424] = { - [sym_namespace_export] = STATE(2561), - [sym_export_clause] = STATE(1886), - [sym_declaration] = STATE(968), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_class_declaration] = STATE(971), - [sym_function_declaration] = STATE(971), - [sym_generator_function_declaration] = STATE(971), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1852), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_var] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_async] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [sym_html_comment] = ACTIONS(5), }, [425] = { - [sym_namespace_export] = STATE(2561), - [sym_export_clause] = STATE(1886), - [sym_declaration] = STATE(968), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_class_declaration] = STATE(971), - [sym_function_declaration] = STATE(971), - [sym_generator_function_declaration] = STATE(971), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1852), - [aux_sym_object_repeat1] = STATE(1986), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_var] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_async] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), - }, - [426] = { - [sym_namespace_export] = STATE(2630), - [sym_export_clause] = STATE(1912), - [sym_declaration] = STATE(825), - [sym_variable_declaration] = STATE(824), - [sym_lexical_declaration] = STATE(824), - [sym_class_declaration] = STATE(824), - [sym_function_declaration] = STATE(824), - [sym_generator_function_declaration] = STATE(824), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1905), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1175), + [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(1175), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1219), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1223), - [anon_sym_async] = ACTIONS(1225), - [anon_sym_function] = ACTIONS(1227), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), - }, - [427] = { - [sym_namespace_export] = STATE(2561), - [sym_export_clause] = STATE(1886), - [sym_declaration] = STATE(968), - [sym_variable_declaration] = STATE(971), - [sym_lexical_declaration] = STATE(971), - [sym_class_declaration] = STATE(971), - [sym_function_declaration] = STATE(971), - [sym_generator_function_declaration] = STATE(971), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1852), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_var] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_async] = ACTIONS(1195), - [anon_sym_function] = ACTIONS(1197), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), - }, - [428] = { - [sym_namespace_export] = STATE(2625), - [sym_export_clause] = STATE(1875), - [sym_declaration] = STATE(863), - [sym_variable_declaration] = STATE(868), - [sym_lexical_declaration] = STATE(868), - [sym_class_declaration] = STATE(868), - [sym_function_declaration] = STATE(868), - [sym_generator_function_declaration] = STATE(868), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1871), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_var] = ACTIONS(1235), - [anon_sym_let] = ACTIONS(1237), - [anon_sym_const] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1239), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1241), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_namespace_export] = STATE(2476), - [sym_export_clause] = STATE(1938), - [sym_declaration] = STATE(533), - [sym_variable_declaration] = STATE(532), - [sym_lexical_declaration] = STATE(532), - [sym_class_declaration] = STATE(532), - [sym_function_declaration] = STATE(532), - [sym_generator_function_declaration] = STATE(532), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1937), + [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(1173), - [anon_sym_COMMA] = ACTIONS(1175), + [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(1175), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1211), [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1257), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_function] = ACTIONS(1261), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [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), + [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), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [430] = { - [sym_namespace_export] = STATE(2550), - [sym_export_clause] = STATE(1889), - [sym_declaration] = STATE(2563), - [sym_variable_declaration] = STATE(2562), - [sym_lexical_declaration] = STATE(2562), - [sym_class_declaration] = STATE(2562), - [sym_function_declaration] = STATE(2562), - [sym_generator_function_declaration] = STATE(2562), - [sym_decorator] = STATE(2031), - [aux_sym_export_statement_repeat1] = STATE(1922), - [anon_sym_STAR] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1175), - [anon_sym_var] = ACTIONS(1267), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1175), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1271), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_function] = ACTIONS(1277), - [anon_sym_EQ_GT] = ACTIONS(1199), - [sym_optional_chain] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1201), - [anon_sym_DASH_EQ] = ACTIONS(1201), - [anon_sym_STAR_EQ] = ACTIONS(1201), - [anon_sym_SLASH_EQ] = ACTIONS(1201), - [anon_sym_PERCENT_EQ] = ACTIONS(1201), - [anon_sym_CARET_EQ] = ACTIONS(1201), - [anon_sym_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1201), - [anon_sym_LT_LT_EQ] = ACTIONS(1201), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1201), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1201), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1201), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1175), - [anon_sym_PLUS_PLUS] = ACTIONS(1175), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [sym_comment] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1175), - [anon_sym_AT] = ACTIONS(1205), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [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_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1324), + [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(1326), + [anon_sym_async] = ACTIONS(1328), + [anon_sym_function] = ACTIONS(1330), + [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), }, [431] = { - [sym_string] = STATE(2186), - [sym_formal_parameters] = STATE(2701), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1986), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1279), - [anon_sym_export] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1281), - [anon_sym_function] = ACTIONS(1298), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_get] = ACTIONS(1310), - [anon_sym_set] = ACTIONS(1310), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [432] = { - [sym_string] = STATE(2186), - [sym_formal_parameters] = STATE(2701), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1279), - [anon_sym_export] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1281), - [anon_sym_function] = ACTIONS(1298), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_get] = ACTIONS(1310), - [anon_sym_set] = ACTIONS(1310), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [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_string] = STATE(2186), - [sym_formal_parameters] = STATE(2701), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1279), - [anon_sym_export] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1281), - [anon_sym_function] = ACTIONS(1298), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_get] = ACTIONS(1310), - [anon_sym_set] = ACTIONS(1310), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [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), + [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), + [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), + [sym_html_comment] = ACTIONS(5), }, [434] = { - [sym_string] = STATE(2186), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1986), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1316), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [sym_string] = STATE(2554), + [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_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1350), + [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_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(1357), + [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), + [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(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), }, [435] = { - [sym_string] = STATE(2186), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1316), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1321), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1323), - [anon_sym_set] = ACTIONS(1323), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [sym_string] = STATE(2554), + [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_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_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_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(1352), + [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), + [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(1352), + [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), }, [436] = { - [sym_string] = STATE(2186), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1316), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [sym_string] = STATE(2554), + [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_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1290), + [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_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(1357), + [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), + [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(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), }, [437] = { - [sym_string] = STATE(2186), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1316), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1321), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1323), - [anon_sym_set] = ACTIONS(1323), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [sym_string] = STATE(2554), + [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_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_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_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(1352), + [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), + [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(1352), + [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), }, [438] = { - [sym_string] = STATE(2186), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1993), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1316), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [sym_string] = STATE(2554), + [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_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1222), + [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_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(1357), + [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), + [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(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), }, [439] = { - [sym_string] = STATE(2186), - [sym__property_name] = STATE(2186), - [sym_computed_property_name] = STATE(2186), - [aux_sym_object_repeat1] = STATE(1986), - [aux_sym_object_pattern_repeat1] = STATE(1990), - [sym_identifier] = ACTIONS(1316), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1321), - [anon_sym_EQ_GT] = ACTIONS(1300), - [sym_optional_chain] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1302), - [anon_sym_DASH_EQ] = ACTIONS(1302), - [anon_sym_STAR_EQ] = ACTIONS(1302), - [anon_sym_SLASH_EQ] = ACTIONS(1302), - [anon_sym_PERCENT_EQ] = ACTIONS(1302), - [anon_sym_CARET_EQ] = ACTIONS(1302), - [anon_sym_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1302), - [anon_sym_LT_LT_EQ] = ACTIONS(1302), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1302), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1302), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1302), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_GT_GT_GT] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_STAR_STAR] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_QMARK_QMARK] = ACTIONS(1186), - [anon_sym_instanceof] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1186), - [anon_sym_DASH_DASH] = ACTIONS(1186), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1186), - [sym_number] = ACTIONS(1308), - [sym_private_property_identifier] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1323), - [anon_sym_set] = ACTIONS(1323), - [sym__automatic_semicolon] = ACTIONS(1175), - [sym__ternary_qmark] = ACTIONS(1175), + [sym_string] = STATE(2554), + [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_identifier] = ACTIONS(1352), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [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_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(1352), + [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), + [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(1352), + [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), + }, + [440] = { + [sym_comment] = STATE(440), + [sym_formal_parameters] = STATE(2768), + [sym_identifier] = ACTIONS(1361), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1222), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1222), + [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), + [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), + [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), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_comment] = STATE(441), + [sym_formal_parameters] = STATE(2768), + [sym_identifier] = ACTIONS(1361), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1222), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1222), + [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), + [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), + [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), + [sym__ternary_qmark] = ACTIONS(1211), + [sym_html_comment] = ACTIONS(5), + }, + [442] = { + [sym_comment] = STATE(442), + [sym_formal_parameters] = STATE(2742), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = 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_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), + [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), + [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), + }, + [443] = { + [sym_comment] = STATE(443), + [sym_formal_parameters] = STATE(2756), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1365), + [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_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), + [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), + [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), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [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_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), + [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), + [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), + }, + [445] = { + [sym_comment] = STATE(445), + [sym_formal_parameters] = STATE(2756), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1394), + [anon_sym_of] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1222), + [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), + [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), + [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), + }, + [446] = { + [sym_comment] = STATE(446), + [sym_formal_parameters] = STATE(2768), + [sym_identifier] = ACTIONS(1361), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1402), + [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), + [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), + [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), + [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), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1407), + [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_EQ] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym__automatic_semicolon] = ACTIONS(1211), + [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), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1374), + [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), + [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), + [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), + }, + [449] = { + [sym_comment] = STATE(449), + [sym_formal_parameters] = STATE(2780), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1415), + [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), + [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), + [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), + [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), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_COLON] = ACTIONS(1422), + [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), + [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), + [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), + }, + [451] = { + [sym_comment] = STATE(451), + [sym_formal_parameters] = STATE(2780), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1374), + [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), + [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), + [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), + [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), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1365), + [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_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), + [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), + [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), + [sym_identifier] = ACTIONS(1376), + [anon_sym_export] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = 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(1432), + [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), + [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), + [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), + }, + [454] = { + [sym_comment] = STATE(454), + [sym_formal_parameters] = STATE(2756), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [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_async] = ACTIONS(1386), + [anon_sym_function] = ACTIONS(1436), + [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), + [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), + }, + [455] = { + [sym_comment] = STATE(455), + [sym_formal_parameters] = STATE(2756), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_COMMA] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [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), + [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), + [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), + }, + [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), + [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_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_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [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), + [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_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_LT] = ACTIONS(1222), + [anon_sym_GT] = ACTIONS(1222), + [anon_sym_DOT] = ACTIONS(1222), + [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), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1222), + [sym__automatic_semicolon] = ACTIONS(1211), + [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), + [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), + }, + [460] = { + [sym_comment] = STATE(460), + [sym_formal_parameters] = STATE(2768), + [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_let] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(1448), + [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), + [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), + [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), + [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, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + ts_builtin_sym_end, + ACTIONS(1461), 1, + sym__automatic_semicolon, + STATE(464), 1, sym_comment, - ACTIONS(1327), 1, - anon_sym_catch, - ACTIONS(1329), 1, - anon_sym_finally, - STATE(468), 1, - sym_catch_clause, - STATE(595), 1, - sym_finally_clause, - ACTIONS(1325), 59, + ACTIONS(874), 59, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -54585,7 +57234,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -54620,260 +57270,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [77] = 11, + [77] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(932), 1, + ts_builtin_sym_end, + ACTIONS(1463), 1, + sym__automatic_semicolon, + STATE(465), 1, sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1331), 1, - sym_identifier, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1340), 1, - anon_sym_function, - ACTIONS(1342), 1, - anon_sym_EQ_GT, - STATE(2738), 1, - sym_formal_parameters, - ACTIONS(1333), 5, + ACTIONS(864), 59, anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 36, - anon_sym_STAR, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, + 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_RBRACK, + 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_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_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - [164] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1331), 1, + sym_number, sym_identifier, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1340), 1, - anon_sym_function, - ACTIONS(1342), 1, - anon_sym_EQ_GT, - ACTIONS(1344), 1, - anon_sym_EQ, - STATE(2738), 1, - sym_formal_parameters, - ACTIONS(1333), 5, - anon_sym_export, - 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(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 36, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [251] = 13, + [154] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1300), 1, + ACTIONS(1302), 1, + anon_sym_function, + ACTIONS(1304), 1, anon_sym_EQ_GT, - ACTIONS(1335), 1, + ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1346), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1350), 1, - anon_sym_in, - ACTIONS(1353), 1, - anon_sym_of, - ACTIONS(1355), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 32, - anon_sym_STAR, - anon_sym_COMMA, - 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, - [341] = 11, - ACTIONS(3), 1, + STATE(466), 1, sym_comment, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1344), 1, - anon_sym_EQ, - ACTIONS(1355), 1, - anon_sym_function, - ACTIONS(1357), 1, - sym_identifier, - ACTIONS(1361), 1, - anon_sym_EQ_GT, - STATE(2725), 1, + STATE(2756), 1, sym_formal_parameters, - ACTIONS(1175), 2, + ACTIONS(1211), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1359), 5, + ACTIONS(1386), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54889,11 +57386,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(1186), 34, + ACTIONS(1222), 32, anon_sym_STAR, - anon_sym_COMMA, anon_sym_in, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -54924,12 +57419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [427] = 3, + [245] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1363), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1465), 1, sym__automatic_semicolon, - ACTIONS(880), 61, + STATE(467), 1, + sym_comment, + ACTIONS(874), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -54938,7 +57437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -54991,107 +57489,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [497] = 12, + [320] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1467), 1, + sym__automatic_semicolon, + STATE(468), 1, sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1365), 1, - anon_sym_COLON, - ACTIONS(1367), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, + ACTIONS(864), 60, anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 33, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_in, + 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_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_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_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - [585] = 11, + 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, + [395] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1335), 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(1355), 1, - anon_sym_function, - ACTIONS(1357), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1361), 1, - anon_sym_EQ_GT, - ACTIONS(1369), 1, - anon_sym_EQ, - STATE(2725), 1, + ACTIONS(1390), 1, + anon_sym_function, + STATE(469), 1, + sym_comment, + STATE(2756), 1, sym_formal_parameters, - ACTIONS(1175), 2, + ACTIONS(1211), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1359), 5, + ACTIONS(1386), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55107,11 +57604,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(1186), 34, + ACTIONS(1222), 32, anon_sym_STAR, - anon_sym_COMMA, anon_sym_in, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -55142,21 +57637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [671] = 7, + [486] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(470), 1, sym_comment, - ACTIONS(1371), 1, - ts_builtin_sym_end, - ACTIONS(1373), 1, - anon_sym_catch, - ACTIONS(1375), 1, - anon_sym_finally, - STATE(510), 1, - sym_catch_clause, - STATE(798), 1, - sym_finally_clause, - ACTIONS(1325), 57, + ACTIONS(939), 61, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -55179,6 +57669,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -55213,18 +57706,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [749] = 6, + [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, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1469), 1, + sym__automatic_semicolon, + STATE(472), 1, sym_comment, - ACTIONS(1377), 1, - anon_sym_catch, - ACTIONS(1379), 1, - anon_sym_finally, - STATE(480), 1, - sym_catch_clause, - STATE(663), 1, - sym_finally_clause, - ACTIONS(1325), 58, + ACTIONS(874), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -55233,6 +57802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -55249,6 +57819,7 @@ 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, @@ -55283,33 +57854,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [825] = 12, + [725] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_EQ_GT, - ACTIONS(1335), 1, + ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1346), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1381), 1, - anon_sym_COLON, - ACTIONS(1383), 1, + ACTIONS(1424), 1, anon_sym_function, - STATE(2701), 1, + STATE(473), 1, + sym_comment, + STATE(2756), 1, sym_formal_parameters, - ACTIONS(1175), 2, + ACTIONS(1211), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1348), 5, + ACTIONS(1386), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55325,9 +57899,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(1186), 33, + ACTIONS(1222), 32, anon_sym_STAR, - anon_sym_COMMA, anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, @@ -55359,111 +57932,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [913] = 12, + [816] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1298), 1, - anon_sym_function, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1385), 1, - anon_sym_COLON, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1471), 1, sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, + STATE(474), 1, + sym_comment, + ACTIONS(864), 60, anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 33, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_in, + anon_sym_default, + 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, + 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_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_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_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - [1001] = 12, + 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, + [891] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1340), 1, - anon_sym_function, - ACTIONS(1344), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1304), 1, anon_sym_EQ_GT, - STATE(2759), 1, + 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(1391), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1389), 5, + 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(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55479,9 +58047,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(1186), 31, + ACTIONS(1222), 32, anon_sym_STAR, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -55511,35 +58080,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [1089] = 12, + [982] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, sym__ternary_qmark, - ACTIONS(1331), 1, + ACTIONS(1361), 1, sym_identifier, - ACTIONS(1335), 1, + ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1340), 1, + ACTIONS(1370), 1, anon_sym_function, - ACTIONS(1342), 1, + ACTIONS(1372), 1, anon_sym_EQ_GT, - ACTIONS(1398), 1, + ACTIONS(1399), 1, + anon_sym_RBRACK, + ACTIONS(1402), 1, anon_sym_EQ, - STATE(2738), 1, - sym_formal_parameters, - ACTIONS(1395), 4, + ACTIONS(1415), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1333), 5, + STATE(476), 1, + sym_comment, + STATE(2768), 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(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55555,7 +58128,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(1186), 31, + ACTIONS(1222), 31, anon_sym_STAR, anon_sym_in, anon_sym_LBRACK, @@ -55587,12 +58160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [1177] = 3, + [1077] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1442), 1, + anon_sym_finally, + STATE(477), 1, sym_comment, - ACTIONS(1401), 1, - sym__automatic_semicolon, - ACTIONS(820), 61, + STATE(604), 1, + sym_finally_clause, + ACTIONS(1473), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -55618,8 +58197,6 @@ 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, @@ -55654,107 +58231,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1247] = 12, + [1154] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(478), 1, sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1403), 1, - anon_sym_COLON, - ACTIONS(1405), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, + ACTIONS(874), 61, anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 33, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_in, + 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_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_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_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - [1335] = 11, + 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, + [1227] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1300), 1, + ACTIONS(1304), 1, anon_sym_EQ_GT, - ACTIONS(1335), 1, + ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1346), 1, + ACTIONS(1384), 1, sym_identifier, - ACTIONS(1355), 1, + ACTIONS(1436), 1, anon_sym_function, - STATE(2701), 1, + STATE(479), 1, + sym_comment, + STATE(2756), 1, sym_formal_parameters, - ACTIONS(1175), 2, + ACTIONS(1211), 2, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1348), 5, + ACTIONS(1386), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -55770,10 +58345,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(1186), 34, + ACTIONS(1222), 32, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, @@ -55805,247 +58378,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [1421] = 12, + [1318] = 9, 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, sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1340), 1, - anon_sym_function, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1393), 1, - anon_sym_EQ_GT, - ACTIONS(1409), 1, - anon_sym_EQ, - STATE(2759), 1, - sym_formal_parameters, - ACTIONS(1407), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1389), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [1509] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1412), 1, - anon_sym_COLON, - ACTIONS(1414), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 33, - anon_sym_STAR, - anon_sym_COMMA, - 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, - [1597] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1344), 1, - anon_sym_EQ, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1355), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 34, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - 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, - [1683] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - ts_builtin_sym_end, - ACTIONS(1416), 1, - anon_sym_catch, - ACTIONS(1418), 1, - anon_sym_finally, - STATE(535), 1, - sym_catch_clause, - STATE(942), 1, - sym_finally_clause, - ACTIONS(1325), 56, + STATE(610), 1, + sym_catch_clause, + STATE(977), 1, + sym_finally_clause, + ACTIONS(1438), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56102,12 +58452,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1760] = 3, + [1401] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1446), 1, + anon_sym_finally, + STATE(481), 1, sym_comment, - ACTIONS(1420), 1, - sym__automatic_semicolon, - ACTIONS(880), 60, + STATE(697), 1, + sym_finally_clause, + ACTIONS(1473), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56132,8 +58488,6 @@ 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, @@ -56168,12 +58522,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1829] = 3, + [1477] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1422), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(916), 1, sym__automatic_semicolon, - ACTIONS(820), 60, + STATE(482), 1, + sym_comment, + ACTIONS(912), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56199,7 +58557,6 @@ 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, @@ -56234,15 +58591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1898] = 4, + [1551] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(483), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(1424), 1, - sym__automatic_semicolon, - ACTIONS(880), 59, + ACTIONS(1479), 60, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -56265,7 +58623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, + anon_sym_case, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, @@ -56301,12 +58659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1969] = 2, + [1623] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(932), 1, + ts_builtin_sym_end, + ACTIONS(1481), 1, + sym__automatic_semicolon, + STATE(484), 1, sym_comment, - ACTIONS(880), 61, + ACTIONS(864), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -56329,8 +58694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, - anon_sym_catch, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, @@ -56366,90 +58729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2036] = 12, + [1699] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1331), 1, - sym_identifier, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1340), 1, - anon_sym_function, - ACTIONS(1342), 1, - anon_sym_EQ_GT, - STATE(2738), 1, - sym_formal_parameters, - ACTIONS(1426), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1333), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [2123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - ts_builtin_sym_end, - ACTIONS(1429), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1483), 1, sym__automatic_semicolon, - ACTIONS(820), 59, + STATE(485), 1, + sym_comment, + ACTIONS(864), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -56472,8 +58763,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -56508,12 +58798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2194] = 3, + [1773] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1431), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, sym__automatic_semicolon, - ACTIONS(880), 60, + STATE(486), 1, + sym_comment, + ACTIONS(939), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56539,7 +58833,6 @@ 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, @@ -56574,14 +58867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2263] = 4, + [1847] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + sym__automatic_semicolon, + STATE(487), 1, sym_comment, - ACTIONS(1329), 1, - anon_sym_finally, - STATE(647), 1, - sym_finally_clause, - ACTIONS(1433), 59, + ACTIONS(874), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56641,12 +58936,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2334] = 3, + [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, - ACTIONS(1435), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(971), 1, sym__automatic_semicolon, - ACTIONS(820), 60, + STATE(489), 1, + sym_comment, + ACTIONS(967), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56655,6 +59034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -56671,8 +59051,6 @@ 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, @@ -56707,10 +59085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2403] = 2, + [2091] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(979), 1, + sym__automatic_semicolon, + STATE(490), 1, sym_comment, - ACTIONS(846), 61, + ACTIONS(975), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56736,8 +59120,6 @@ 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, @@ -56772,10 +59154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2470] = 2, + [2165] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(995), 1, + sym__automatic_semicolon, + STATE(491), 1, sym_comment, - ACTIONS(1437), 60, + ACTIONS(991), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56801,7 +59189,6 @@ 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, @@ -56836,12 +59223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2536] = 3, + [2239] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(492), 1, sym_comment, - ACTIONS(1439), 1, - sym__automatic_semicolon, - ACTIONS(820), 59, + ACTIONS(874), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -56867,6 +59256,7 @@ 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, @@ -56901,30 +59291,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2604] = 11, + [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, - ACTIONS(1175), 1, + 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(1335), 1, + ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1340), 1, + ACTIONS(1370), 1, anon_sym_function, - ACTIONS(1344), 1, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1387), 1, + ACTIONS(1394), 1, + anon_sym_in, + ACTIONS(1397), 1, + anon_sym_of, + ACTIONS(1411), 1, sym_identifier, - ACTIONS(1393), 1, + ACTIONS(1420), 1, anon_sym_EQ_GT, - STATE(2759), 1, + STATE(494), 1, + sym_comment, + STATE(2780), 1, sym_formal_parameters, - ACTIONS(1389), 5, + ACTIONS(1413), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -56940,11 +59418,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(1186), 33, + ACTIONS(1222), 30, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -56974,16 +59449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [2688] = 4, + [2499] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + ts_builtin_sym_end, + ACTIONS(1487), 1, + sym__automatic_semicolon, + STATE(495), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_else, - STATE(621), 1, - sym_else_clause, - ACTIONS(1441), 58, + ACTIONS(874), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -57005,7 +59483,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -57040,34 +59519,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2758] = 13, + [2575] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, sym__ternary_qmark, - ACTIONS(1331), 1, - sym_identifier, - ACTIONS(1335), 1, + ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1340), 1, + ACTIONS(1370), 1, anon_sym_function, - ACTIONS(1342), 1, - anon_sym_EQ_GT, - ACTIONS(1395), 1, - anon_sym_RBRACK, - ACTIONS(1398), 1, + ACTIONS(1489), 1, + sym_identifier, + ACTIONS(1493), 1, anon_sym_EQ, - ACTIONS(1407), 1, - anon_sym_COMMA, - STATE(2738), 1, + ACTIONS(1495), 1, + anon_sym_EQ_GT, + STATE(496), 1, + sym_comment, + STATE(2724), 1, sym_formal_parameters, - ACTIONS(1333), 5, + ACTIONS(1491), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -57083,9 +59563,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(1186), 31, + ACTIONS(1222), 32, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -57115,12 +59596,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [2846] = 3, + [2665] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1445), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(930), 1, sym__automatic_semicolon, - ACTIONS(880), 59, + STATE(497), 1, + sym_comment, + ACTIONS(928), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -57180,87 +59665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2914] = 11, + [2739] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1298), 1, - anon_sym_function, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [2998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, ts_builtin_sym_end, - ACTIONS(1447), 1, - sym__automatic_semicolon, - ACTIONS(820), 58, + STATE(498), 1, + sym_comment, + ACTIONS(874), 59, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -57268,6 +59682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -57319,12 +59734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3068] = 3, + [2813] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(856), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1497), 1, sym__automatic_semicolon, - ACTIONS(852), 59, + STATE(499), 1, + sym_comment, + ACTIONS(874), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -57333,7 +59752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -57350,6 +59768,7 @@ 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, @@ -57384,14 +59803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3136] = 4, + [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(1379), 1, - anon_sym_finally, - STATE(849), 1, - sym_finally_clause, - ACTIONS(1433), 58, + ACTIONS(959), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -57400,6 +59821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -57450,12 +59872,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3206] = 3, + [2961] = 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(1405), 1, + sym_identifier, + ACTIONS(1407), 1, + anon_sym_LBRACE, + ACTIONS(1409), 1, + anon_sym_LBRACK, + ACTIONS(1428), 1, + anon_sym_COLON, + STATE(501), 1, sym_comment, - ACTIONS(864), 1, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1940), 1, + sym_variable_declarator, + ACTIONS(1211), 2, sym__automatic_semicolon, - ACTIONS(860), 59, + 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, + [3055] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(502), 1, + sym_comment, + ACTIONS(939), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -57481,6 +59984,7 @@ 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, @@ -57515,12 +60019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3274] = 3, + [3127] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(908), 1, sym__automatic_semicolon, - ACTIONS(868), 59, + STATE(503), 1, + sym_comment, + ACTIONS(904), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -57580,12 +60088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3342] = 3, + [3201] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(900), 1, sym__automatic_semicolon, - ACTIONS(888), 59, + STATE(504), 1, + sym_comment, + ACTIONS(896), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -57645,15 +60157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3410] = 4, + [3275] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1501), 1, + anon_sym_else, + STATE(505), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(1449), 1, - sym__automatic_semicolon, - ACTIONS(880), 58, + STATE(548), 1, + sym_else_clause, + ACTIONS(1499), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -57675,8 +60192,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -57711,160 +60227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3480] = 11, + [3351] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1414), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [3564] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1383), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(870), 1, sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [3648] = 4, - ACTIONS(3), 1, + STATE(506), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_else, - STATE(805), 1, - sym_else_clause, - ACTIONS(1441), 58, + ACTIONS(864), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -57873,6 +60245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -57923,14 +60296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3718] = 3, + [3425] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, + ts_builtin_sym_end, + STATE(507), 1, sym_comment, - ACTIONS(900), 1, - sym__automatic_semicolon, - ACTIONS(896), 59, + ACTIONS(939), 59, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -57953,7 +60329,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -57988,12 +60365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3786] = 3, + [3499] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(508), 1, sym_comment, - ACTIONS(910), 1, - sym__automatic_semicolon, - ACTIONS(906), 59, + ACTIONS(874), 60, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58002,7 +60381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -58019,6 +60397,8 @@ 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, @@ -58053,31 +60433,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3854] = 11, + [3571] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, + sym__ternary_qmark, + ACTIONS(1365), 1, anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1405), 1, + ACTIONS(1370), 1, anon_sym_function, - STATE(2701), 1, + ACTIONS(1374), 1, + anon_sym_EQ, + ACTIONS(1489), 1, + sym_identifier, + ACTIONS(1495), 1, + anon_sym_EQ_GT, + STATE(509), 1, + sym_comment, + STATE(2724), 1, sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, + ACTIONS(1491), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1302), 15, + ACTIONS(1306), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -58093,10 +60477,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(1186), 32, + ACTIONS(1222), 32, anon_sym_STAR, anon_sym_in, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_LT, anon_sym_GT, @@ -58126,14 +60510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [3938] = 3, + [3661] = 7, 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, sym_comment, - ACTIONS(918), 1, - sym__automatic_semicolon, - ACTIONS(914), 59, + STATE(867), 1, + sym_finally_clause, + ACTIONS(1473), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -58156,7 +60547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -58191,85 +60581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4006] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1300), 1, - anon_sym_EQ_GT, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1346), 1, - sym_identifier, - ACTIONS(1367), 1, - anon_sym_function, - STATE(2701), 1, - sym_formal_parameters, - ACTIONS(1175), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(1348), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [4090] = 3, + [3739] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1505), 1, + anon_sym_else, + STATE(511), 1, sym_comment, - ACTIONS(848), 1, - sym__automatic_semicolon, - ACTIONS(846), 59, + STATE(727), 1, + sym_else_clause, + ACTIONS(1499), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58278,7 +60601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -58329,12 +60651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4158] = 3, + [3815] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(926), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(989), 1, sym__automatic_semicolon, - ACTIONS(922), 59, + STATE(512), 1, + sym_comment, + ACTIONS(987), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58394,10 +60720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4226] = 2, + [3889] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1507), 1, + sym__automatic_semicolon, + STATE(513), 1, sym_comment, - ACTIONS(1453), 60, + ACTIONS(874), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58423,7 +60755,6 @@ 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, @@ -58458,13 +60789,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4292] = 3, + [3963] = 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(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, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(880), 59, + 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), 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, + sym_comment, + ACTIONS(1509), 60, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -58487,7 +60900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_catch, + anon_sym_case, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, @@ -58523,21 +60936,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4360] = 3, + [4129] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(826), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(932), 1, + ts_builtin_sym_end, + ACTIONS(1511), 1, sym__automatic_semicolon, - ACTIONS(820), 59, + STATE(516), 1, + sym_comment, + ACTIONS(864), 58, 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, @@ -58553,7 +60970,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -58588,20 +61006,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4428] = 3, + [4205] = 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(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, - ACTIONS(848), 1, - ts_builtin_sym_end, - ACTIONS(846), 59, + 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), 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, + sym_comment, + ACTIONS(939), 60, 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, @@ -58617,6 +61116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_catch, anon_sym_finally, anon_sym_yield, @@ -58653,10 +61153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4496] = 2, + [4371] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1513), 1, + sym__automatic_semicolon, + STATE(519), 1, sym_comment, - ACTIONS(846), 60, + ACTIONS(864), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58665,7 +61171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -58717,10 +61222,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4562] = 2, + [4445] = 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(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, - ACTIONS(846), 60, + 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), 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, + [4539] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1515), 1, + sym__automatic_semicolon, + STATE(521), 1, + sym_comment, + ACTIONS(874), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58729,6 +61319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -58745,8 +61336,6 @@ 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, @@ -58781,12 +61370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4628] = 3, + [4613] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(924), 1, sym__automatic_semicolon, - ACTIONS(820), 59, + STATE(522), 1, + sym_comment, + ACTIONS(920), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58795,6 +61388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -58811,7 +61405,6 @@ 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, @@ -58846,12 +61439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4696] = 2, + [4687] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + ts_builtin_sym_end, + ACTIONS(1517), 1, + sym__automatic_semicolon, + STATE(523), 1, sym_comment, - ACTIONS(880), 60, + ACTIONS(874), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -58874,7 +61474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, @@ -58910,12 +61509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4762] = 3, + [4763] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(524), 1, sym_comment, - ACTIONS(1457), 1, - sym__automatic_semicolon, - ACTIONS(880), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58975,12 +61576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4830] = 3, + [4834] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(878), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(985), 1, sym__automatic_semicolon, - ACTIONS(876), 59, + STATE(525), 1, + sym_comment, + ACTIONS(864), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -58989,7 +61594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -59040,10 +61644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4898] = 2, + [4907] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(526), 1, sym_comment, - ACTIONS(880), 60, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59052,6 +61660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -59068,8 +61677,6 @@ 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, @@ -59104,12 +61711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4964] = 3, + [4978] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(527), 1, sym_comment, - ACTIONS(882), 1, - sym__automatic_semicolon, - ACTIONS(880), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59169,12 +61778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5032] = 3, + [5049] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(528), 1, sym_comment, - ACTIONS(1459), 1, - sym__automatic_semicolon, - ACTIONS(880), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59183,6 +61794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -59199,7 +61811,6 @@ 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, @@ -59234,21 +61845,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5100] = 3, + [5120] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + ts_builtin_sym_end, + STATE(529), 1, sym_comment, - ACTIONS(886), 1, - sym__automatic_semicolon, - ACTIONS(884), 59, + ACTIONS(874), 58, 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, @@ -59264,7 +61877,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -59299,22 +61913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5168] = 4, + [5193] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - ts_builtin_sym_end, - ACTIONS(1461), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1523), 1, sym__automatic_semicolon, - ACTIONS(820), 58, + STATE(530), 1, + sym_comment, + ACTIONS(874), 58, 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, @@ -59330,7 +61946,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -59365,16 +61981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5238] = 5, + [5266] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1375), 1, - anon_sym_finally, - ACTIONS(1463), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, ts_builtin_sym_end, - STATE(770), 1, - sym_finally_clause, - ACTIONS(1433), 57, + ACTIONS(1525), 1, + sym__automatic_semicolon, + STATE(531), 1, + sym_comment, + ACTIONS(874), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -59432,14 +62050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5310] = 4, + [5341] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(882), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1025), 1, ts_builtin_sym_end, - ACTIONS(1465), 1, + ACTIONS(1027), 1, sym__automatic_semicolon, - ACTIONS(880), 58, + STATE(532), 1, + sym_comment, + ACTIONS(920), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -59463,7 +62085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -59498,10 +62119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5380] = 2, + [5416] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(533), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59561,10 +62186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5445] = 2, + [5487] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(534), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59624,10 +62253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5510] = 2, + [5558] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(535), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59687,10 +62320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5575] = 2, + [5629] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(536), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59750,10 +62387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5640] = 2, + [5700] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(537), 1, sym_comment, - ACTIONS(1437), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59762,6 +62403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -59778,7 +62420,6 @@ 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, @@ -59813,23 +62454,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5705] = 5, + [5771] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(538), 1, sym_comment, - ACTIONS(1469), 1, - ts_builtin_sym_end, - ACTIONS(1471), 1, - anon_sym_else, - STATE(930), 1, - sym_else_clause, - ACTIONS(1441), 56, + ACTIONS(1521), 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, @@ -59845,6 +62486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -59879,12 +62521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5776] = 3, + [5842] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(539), 1, sym_comment, - ACTIONS(969), 1, - sym__automatic_semicolon, - ACTIONS(860), 58, + ACTIONS(1527), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -59893,6 +62537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -59943,14 +62588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5843] = 3, + [5913] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, + ts_builtin_sym_end, + STATE(540), 1, sym_comment, - ACTIONS(987), 1, - sym__automatic_semicolon, - ACTIONS(868), 58, + ACTIONS(939), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -59972,7 +62620,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -60007,14 +62656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5910] = 3, + [5986] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(541), 1, sym_comment, - ACTIONS(848), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(846), 57, + ACTIONS(1521), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -60037,6 +62688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -60071,12 +62723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5977] = 3, + [6057] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(542), 1, sym_comment, - ACTIONS(930), 1, - sym__automatic_semicolon, - ACTIONS(888), 58, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60085,6 +62739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -60135,14 +62790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6044] = 3, + [6128] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(543), 1, sym_comment, - ACTIONS(882), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(880), 57, + ACTIONS(1521), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -60165,6 +62822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -60199,141 +62857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6111] = 3, + [6199] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(544), 1, sym_comment, - ACTIONS(848), 1, - ts_builtin_sym_end, - ACTIONS(846), 58, - anon_sym_export, - 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, - 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, - 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, - [6178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(1473), 1, - sym__automatic_semicolon, - ACTIONS(880), 57, - 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_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, - [6247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 1, - sym__automatic_semicolon, - ACTIONS(880), 58, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60342,6 +62873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -60392,12 +62924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6314] = 3, + [6270] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(545), 1, sym_comment, - ACTIONS(993), 1, - sym__automatic_semicolon, - ACTIONS(896), 58, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60406,6 +62940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -60456,12 +62991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6381] = 3, + [6341] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(546), 1, sym_comment, - ACTIONS(997), 1, - sym__automatic_semicolon, - ACTIONS(906), 58, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60470,71 +63007,6 @@ static const uint16_t ts_small_parse_table[] = { 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_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_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, - [6448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - ts_builtin_sym_end, - ACTIONS(1477), 1, - sym__automatic_semicolon, - ACTIONS(820), 57, - 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, @@ -60551,6 +63023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -60585,12 +63058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6517] = 3, + [6412] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(547), 1, sym_comment, - ACTIONS(1011), 1, - sym__automatic_semicolon, - ACTIONS(914), 58, + ACTIONS(1529), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60599,6 +63074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -60649,12 +63125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6584] = 3, + [6483] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(548), 1, sym_comment, - ACTIONS(1021), 1, - sym__automatic_semicolon, - ACTIONS(922), 58, + ACTIONS(1531), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60663,6 +63141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -60713,18 +63192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6651] = 2, + [6554] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1533), 1, + ts_builtin_sym_end, + STATE(549), 1, sym_comment, - ACTIONS(1453), 59, + ACTIONS(1509), 58, 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, @@ -60740,7 +63225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, @@ -60776,19 +63260,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6716] = 2, + [6627] = 7, 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, sym_comment, - ACTIONS(1479), 59, + STATE(834), 1, + sym_else_clause, + ACTIONS(1499), 56, 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, @@ -60804,7 +63296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -60839,10 +63330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6781] = 2, + [6704] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(551), 1, sym_comment, - ACTIONS(1481), 59, + ACTIONS(1539), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60902,12 +63397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6846] = 3, + [6775] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(552), 1, sym_comment, - ACTIONS(882), 1, - sym__automatic_semicolon, - ACTIONS(880), 58, + ACTIONS(1539), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -60916,6 +63413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -60966,16 +63464,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6913] = 5, + [6846] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_finally, - ACTIONS(1463), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1535), 1, ts_builtin_sym_end, - STATE(931), 1, - sym_finally_clause, - ACTIONS(1433), 56, + ACTIONS(1541), 1, + anon_sym_else, + STATE(553), 1, + sym_comment, + STATE(968), 1, + sym_else_clause, + ACTIONS(1499), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -61032,10 +63534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6984] = 2, + [6923] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(554), 1, sym_comment, - ACTIONS(1483), 59, + ACTIONS(1543), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61095,13 +63601,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7049] = 3, + [6994] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(555), 1, sym_comment, - ACTIONS(848), 1, - ts_builtin_sym_end, - ACTIONS(846), 58, + ACTIONS(1543), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -61124,7 +63633,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -61159,12 +63668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7116] = 3, + [7065] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(556), 1, sym_comment, - ACTIONS(1485), 1, - sym__automatic_semicolon, - ACTIONS(880), 58, + ACTIONS(1543), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61173,6 +63684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -61223,13 +63735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7183] = 3, + [7136] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(557), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(880), 58, + ACTIONS(1543), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -61252,7 +63767,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -61287,10 +63802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7250] = 2, + [7207] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(558), 1, sym_comment, - ACTIONS(1487), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61350,10 +63869,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7315] = 2, + [7278] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, + sym__automatic_semicolon, + STATE(559), 1, sym_comment, - ACTIONS(1489), 59, + ACTIONS(939), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61362,7 +63887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -61413,15 +63937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7380] = 4, + [7351] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(560), 1, sym_comment, - ACTIONS(840), 1, - ts_builtin_sym_end, - ACTIONS(842), 1, - sym__automatic_semicolon, - ACTIONS(820), 57, + ACTIONS(1545), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -61444,6 +63969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -61478,10 +64004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7449] = 2, + [7422] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(561), 1, sym_comment, - ACTIONS(1491), 59, + ACTIONS(1543), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61541,10 +64071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7514] = 2, + [7493] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(562), 1, sym_comment, - ACTIONS(1493), 59, + ACTIONS(1543), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61604,10 +64138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7579] = 2, + [7564] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(563), 1, sym_comment, - ACTIONS(1495), 59, + ACTIONS(1547), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61667,10 +64205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7644] = 2, + [7635] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(564), 1, sym_comment, - ACTIONS(1497), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61730,12 +64272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7709] = 3, + [7706] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(565), 1, sym_comment, - ACTIONS(848), 1, - sym__automatic_semicolon, - ACTIONS(846), 58, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61744,6 +64288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -61794,13 +64339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7776] = 3, + [7777] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(566), 1, sym_comment, - ACTIONS(1499), 1, - ts_builtin_sym_end, - ACTIONS(1453), 58, + ACTIONS(1549), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -61823,7 +64371,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -61858,15 +64406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7843] = 4, + [7848] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(567), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(1501), 1, - sym__automatic_semicolon, - ACTIONS(880), 57, + ACTIONS(1551), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -61889,6 +64438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -61923,12 +64473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7912] = 3, + [7919] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(568), 1, sym_comment, - ACTIONS(878), 1, - sym__automatic_semicolon, - ACTIONS(876), 58, + ACTIONS(1553), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -61937,6 +64489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -61987,12 +64540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7979] = 3, + [7990] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(569), 1, sym_comment, - ACTIONS(886), 1, - sym__automatic_semicolon, - ACTIONS(884), 58, + ACTIONS(1555), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -62001,6 +64556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -62051,10 +64607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8046] = 2, + [8061] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(570), 1, sym_comment, - ACTIONS(1503), 59, + ACTIONS(1557), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -62114,13 +64674,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8111] = 3, + [8132] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(571), 1, sym_comment, - ACTIONS(1505), 1, - ts_builtin_sym_end, - ACTIONS(1437), 58, + ACTIONS(1559), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -62143,7 +64706,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -62178,10 +64741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8178] = 2, + [8203] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(572), 1, sym_comment, - ACTIONS(1507), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -62241,19 +64808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8243] = 2, + [8274] = 6, 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, sym_comment, - ACTIONS(1509), 59, + ACTIONS(864), 57, 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, @@ -62269,7 +64842,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -62304,10 +64877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8308] = 2, + [8349] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(574), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1563), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -62367,12 +64944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8373] = 2, + [8420] = 6, 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, sym_comment, - ACTIONS(1509), 59, + ACTIONS(896), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -62395,7 +64979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -62430,14 +65013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8438] = 3, + [8495] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(576), 1, sym_comment, - ACTIONS(878), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(876), 57, + ACTIONS(1519), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -62460,6 +65045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -62494,10 +65080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8505] = 2, + [8566] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(577), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -62557,14 +65147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8570] = 3, + [8637] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(578), 1, sym_comment, - ACTIONS(886), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(884), 57, + ACTIONS(1519), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -62587,6 +65179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -62621,10 +65214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8637] = 2, + [8708] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(579), 1, sym_comment, - ACTIONS(1511), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -62684,21 +65281,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8702] = 4, + [8779] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(580), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(1513), 1, - sym__automatic_semicolon, - ACTIONS(880), 57, + ACTIONS(1519), 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, @@ -62714,7 +65313,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -62749,10 +65348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8771] = 2, + [8850] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(581), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -62812,84 +65415,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8836] = 11, + [8921] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(582), 1, sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1335), 1, + ACTIONS(1519), 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, - ACTIONS(1340), 1, + 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, - ACTIONS(1344), 1, - anon_sym_EQ, - ACTIONS(1515), 1, + 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, - ACTIONS(1519), 1, - anon_sym_EQ_GT, - STATE(2696), 1, - sym_formal_parameters, - ACTIONS(1517), 5, - anon_sym_export, - 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(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 32, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, + [8992] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(583), 1, + sym_comment, + ACTIONS(1519), 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_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_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_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - [8919] = 2, + 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, + [9063] = 6, 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, sym_comment, - ACTIONS(1509), 59, + ACTIONS(904), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -62912,7 +65584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -62947,12 +65618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8984] = 2, + [9138] = 6, 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, sym_comment, - ACTIONS(1521), 59, + ACTIONS(912), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -62975,7 +65653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -63010,10 +65687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9049] = 2, + [9213] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(586), 1, sym_comment, - ACTIONS(1523), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63073,12 +65754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9114] = 3, + [9284] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(587), 1, sym_comment, - ACTIONS(1015), 1, - sym__automatic_semicolon, - ACTIONS(852), 58, + ACTIONS(1565), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63087,6 +65770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -63137,14 +65821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9181] = 4, + [9355] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1035), 1, ts_builtin_sym_end, - ACTIONS(991), 1, + ACTIONS(1037), 1, sym__automatic_semicolon, - ACTIONS(922), 57, + STATE(588), 1, + sym_comment, + ACTIONS(991), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -63202,10 +65890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9250] = 2, + [9430] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(589), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63265,12 +65957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9315] = 2, + [9501] = 6, 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, sym_comment, - ACTIONS(1467), 59, + ACTIONS(975), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -63293,7 +65992,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -63328,10 +66026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9380] = 2, + [9576] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(591), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63391,12 +66093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9445] = 2, + [9647] = 6, 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, sym_comment, - ACTIONS(1509), 59, + ACTIONS(967), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -63419,7 +66128,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -63454,12 +66162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9510] = 2, + [9722] = 6, 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, sym_comment, - ACTIONS(1525), 59, + ACTIONS(959), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -63482,7 +66197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -63517,12 +66231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9575] = 2, + [9797] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1567), 1, + ts_builtin_sym_end, + STATE(594), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1479), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -63545,7 +66264,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -63580,10 +66299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9640] = 2, + [9870] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(595), 1, sym_comment, - ACTIONS(1527), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63643,10 +66366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9705] = 2, + [9941] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + sym__automatic_semicolon, + STATE(596), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(874), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63655,7 +66384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -63706,10 +66434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9770] = 2, + [10014] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(597), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(939), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63718,7 +66450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -63735,6 +66466,7 @@ 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, @@ -63769,15 +66501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9835] = 4, + [10085] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(598), 1, sym_comment, - ACTIONS(983), 1, - ts_builtin_sym_end, - ACTIONS(985), 1, - sym__automatic_semicolon, - ACTIONS(914), 57, + ACTIONS(1519), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -63800,6 +66533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -63834,10 +66568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9904] = 2, + [10156] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(599), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63897,10 +66635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9969] = 2, + [10227] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1569), 1, + sym__automatic_semicolon, + STATE(600), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(864), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -63909,7 +66653,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -63960,10 +66703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10034] = 2, + [10300] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(601), 1, sym_comment, - ACTIONS(1529), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -64023,82 +66770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10099] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1340), 1, - anon_sym_function, - ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1519), 1, - anon_sym_EQ_GT, - ACTIONS(1531), 1, - anon_sym_EQ, - STATE(2696), 1, - sym_formal_parameters, - ACTIONS(1517), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [10182] = 2, + [10371] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(602), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -64158,10 +66837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10247] = 2, + [10442] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(603), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1571), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -64221,15 +66904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10312] = 4, + [10513] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(604), 1, sym_comment, - ACTIONS(977), 1, - ts_builtin_sym_end, - ACTIONS(979), 1, - sym__automatic_semicolon, - ACTIONS(906), 57, + ACTIONS(1573), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -64252,6 +66936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -64286,10 +66971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10381] = 2, + [10584] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(605), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -64349,22 +67038,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10446] = 4, + [10655] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(606), 1, sym_comment, - ACTIONS(973), 1, - ts_builtin_sym_end, - ACTIONS(975), 1, - sym__automatic_semicolon, - ACTIONS(896), 57, + ACTIONS(874), 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, @@ -64380,6 +67069,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -64414,10 +67105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10515] = 2, + [10726] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(607), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1519), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -64477,10 +67172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10580] = 2, + [10797] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(608), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(939), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -64540,10 +67239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10645] = 2, + [10868] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(609), 1, sym_comment, - ACTIONS(1509), 59, + ACTIONS(1521), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -64603,93 +67306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10710] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 1, - sym__ternary_qmark, - ACTIONS(1335), 1, - anon_sym_LPAREN, - ACTIONS(1340), 1, - anon_sym_function, - ACTIONS(1344), 1, - anon_sym_EQ, - ACTIONS(1350), 1, - anon_sym_in, - ACTIONS(1353), 1, - anon_sym_of, - ACTIONS(1387), 1, - sym_identifier, - ACTIONS(1393), 1, - anon_sym_EQ_GT, - STATE(2759), 1, - sym_formal_parameters, - ACTIONS(1389), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1302), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 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, - [10797] = 2, + [10939] = 7, 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, sym_comment, - ACTIONS(1533), 59, + STATE(902), 1, + sym_finally_clause, + ACTIONS(1473), 56, 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, @@ -64705,7 +67342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -64740,21 +67376,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10862] = 4, + [11016] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(611), 1, sym_comment, - ACTIONS(840), 1, - ts_builtin_sym_end, - ACTIONS(1535), 1, - sym__automatic_semicolon, - ACTIONS(820), 57, + ACTIONS(874), 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, @@ -64770,7 +67408,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -64805,12 +67443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10931] = 2, + [11087] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(612), 1, sym_comment, - ACTIONS(1537), 59, + ACTIONS(876), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(874), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -64833,7 +67477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -64868,12 +67511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10996] = 2, + [11160] = 6, 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, sym_comment, - ACTIONS(1539), 59, + ACTIONS(864), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -64896,7 +67546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -64931,12 +67580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11061] = 2, + [11235] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, + ts_builtin_sym_end, + STATE(614), 1, sym_comment, - ACTIONS(1541), 59, + ACTIONS(939), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -64959,7 +67613,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -64994,10 +67648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11126] = 2, + [11308] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1577), 1, + sym__automatic_semicolon, + STATE(615), 1, sym_comment, - ACTIONS(1543), 59, + ACTIONS(874), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65006,7 +67666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -65057,12 +67716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11191] = 2, + [11381] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + ts_builtin_sym_end, + STATE(616), 1, sym_comment, - ACTIONS(1545), 59, + ACTIONS(874), 58, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -65085,7 +67749,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -65120,12 +67784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11256] = 2, + [11454] = 6, 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, sym_comment, - ACTIONS(1547), 59, + ACTIONS(864), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -65148,7 +67819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -65183,17 +67853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11321] = 5, + [11529] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(989), 1, + sym__automatic_semicolon, + STATE(618), 1, sym_comment, - ACTIONS(1469), 1, - ts_builtin_sym_end, - ACTIONS(1549), 1, - anon_sym_else, - STATE(766), 1, - sym_else_clause, - ACTIONS(1441), 56, + ACTIONS(987), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -65215,6 +67886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -65249,10 +67921,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11392] = 2, + [11602] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(930), 1, + sym__automatic_semicolon, + STATE(619), 1, sym_comment, - ACTIONS(1551), 59, + ACTIONS(928), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65261,7 +67939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -65312,12 +67989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11457] = 2, + [11675] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(620), 1, sym_comment, - ACTIONS(1553), 59, + ACTIONS(989), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(987), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -65340,7 +68023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -65375,12 +68057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11522] = 2, + [11748] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(621), 1, sym_comment, - ACTIONS(1553), 59, + ACTIONS(941), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(939), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -65403,7 +68091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -65438,10 +68125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11587] = 2, + [11821] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(622), 1, sym_comment, - ACTIONS(1555), 59, + ACTIONS(1579), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65501,19 +68192,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11652] = 2, + [11892] = 6, 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, sym_comment, - ACTIONS(1553), 59, + ACTIONS(874), 57, 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, @@ -65529,7 +68226,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -65564,10 +68261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11717] = 2, + [11967] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(624), 1, sym_comment, - ACTIONS(1553), 59, + ACTIONS(1583), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65627,10 +68328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11782] = 2, + [12038] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(625), 1, sym_comment, - ACTIONS(1557), 59, + ACTIONS(1585), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65690,10 +68395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11847] = 2, + [12109] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(626), 1, sym_comment, - ACTIONS(1553), 59, + ACTIONS(1587), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65753,10 +68462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11912] = 2, + [12180] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(627), 1, sym_comment, - ACTIONS(1559), 59, + ACTIONS(1589), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65816,15 +68529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11977] = 4, + [12251] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(628), 1, sym_comment, - ACTIONS(1017), 1, - ts_builtin_sym_end, - ACTIONS(1019), 1, - sym__automatic_semicolon, - ACTIONS(852), 57, + ACTIONS(1519), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -65847,6 +68561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -65881,10 +68596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12046] = 2, + [12322] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(629), 1, sym_comment, - ACTIONS(1561), 59, + ACTIONS(1591), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -65944,10 +68663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12111] = 2, + [12393] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(630), 1, sym_comment, - ACTIONS(1553), 59, + ACTIONS(1593), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66007,10 +68730,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12176] = 2, + [12464] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1039), 1, + sym__automatic_semicolon, + STATE(631), 1, sym_comment, - ACTIONS(1563), 59, + ACTIONS(920), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66019,7 +68748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -66070,10 +68798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12241] = 2, + [12537] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(632), 1, sym_comment, - ACTIONS(1565), 59, + ACTIONS(1509), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66082,7 +68814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -66099,6 +68830,7 @@ 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, @@ -66133,10 +68865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12306] = 2, + [12608] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(633), 1, sym_comment, - ACTIONS(1567), 59, + ACTIONS(1595), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66196,12 +68932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12371] = 2, + [12679] = 6, 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, sym_comment, - ACTIONS(1569), 59, + ACTIONS(874), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -66224,7 +68967,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -66259,10 +69001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12436] = 2, + [12754] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(635), 1, sym_comment, - ACTIONS(1569), 59, + ACTIONS(1599), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66322,15 +69068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12501] = 4, + [12825] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(636), 1, sym_comment, - ACTIONS(965), 1, - ts_builtin_sym_end, - ACTIONS(967), 1, - sym__automatic_semicolon, - ACTIONS(888), 57, + ACTIONS(1601), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -66353,6 +69100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -66387,10 +69135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12570] = 2, + [12896] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(637), 1, sym_comment, - ACTIONS(1571), 59, + ACTIONS(1603), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66450,10 +69202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12635] = 2, + [12967] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(638), 1, sym_comment, - ACTIONS(1573), 59, + ACTIONS(1605), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66513,12 +69269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12700] = 3, + [13038] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(639), 1, sym_comment, - ACTIONS(850), 1, - sym__automatic_semicolon, - ACTIONS(820), 58, + ACTIONS(1607), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66527,6 +69285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -66577,10 +69336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12767] = 2, + [13109] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(640), 1, sym_comment, - ACTIONS(1575), 59, + ACTIONS(1609), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66640,10 +69403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12832] = 2, + [13180] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(641), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1611), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66703,10 +69470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12897] = 2, + [13251] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(642), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1613), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66766,10 +69537,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [12962] = 2, + [13322] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(643), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1615), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66829,10 +69604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13027] = 2, + [13393] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1019), 1, + sym__automatic_semicolon, + STATE(644), 1, sym_comment, - ACTIONS(846), 59, + ACTIONS(896), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66841,7 +69622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -66892,10 +69672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13092] = 2, + [13466] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1017), 1, + sym__automatic_semicolon, + STATE(645), 1, sym_comment, - ACTIONS(880), 59, + ACTIONS(904), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -66920,7 +69706,6 @@ 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, @@ -66955,10 +69740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13157] = 2, + [13539] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(646), 1, sym_comment, - ACTIONS(1577), 59, + ACTIONS(1617), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67018,10 +69807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13222] = 2, + [13610] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(647), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1619), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67081,10 +69874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13287] = 2, + [13681] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(648), 1, sym_comment, - ACTIONS(1579), 59, + ACTIONS(1621), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67144,12 +69941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13352] = 3, + [13752] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(649), 1, sym_comment, - ACTIONS(1581), 1, - sym__automatic_semicolon, - ACTIONS(820), 58, + ACTIONS(1623), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67158,6 +69957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -67208,10 +70008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13419] = 2, + [13823] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(650), 1, sym_comment, - ACTIONS(1579), 59, + ACTIONS(1625), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67271,10 +70075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13484] = 2, + [13894] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1015), 1, + sym__automatic_semicolon, + STATE(651), 1, sym_comment, - ACTIONS(1583), 59, + ACTIONS(912), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67283,7 +70093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -67334,10 +70143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13549] = 2, + [13967] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(652), 1, sym_comment, - ACTIONS(880), 59, + ACTIONS(1627), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67397,10 +70210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13614] = 2, + [14038] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(653), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1629), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67460,10 +70277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13679] = 2, + [14109] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(654), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1631), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67523,10 +70344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13744] = 2, + [14180] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(655), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1633), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67586,10 +70411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13809] = 2, + [14251] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(656), 1, sym_comment, - ACTIONS(1585), 59, + ACTIONS(1635), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67649,10 +70478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13874] = 2, + [14322] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(657), 1, sym_comment, - ACTIONS(846), 59, + ACTIONS(1479), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67712,10 +70545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [13939] = 2, + [14393] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(658), 1, sym_comment, - ACTIONS(1587), 59, + ACTIONS(1637), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67775,10 +70612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14004] = 2, + [14464] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1049), 1, + sym__automatic_semicolon, + STATE(659), 1, sym_comment, - ACTIONS(1589), 59, + ACTIONS(959), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67787,7 +70630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -67838,19 +70680,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14069] = 3, + [14537] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(660), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(880), 58, + ACTIONS(1639), 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, @@ -67866,8 +70712,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -67902,10 +70747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14136] = 2, + [14608] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(661), 1, sym_comment, - ACTIONS(1591), 59, + ACTIONS(1639), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67965,10 +70814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14201] = 2, + [14679] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1009), 1, + sym__automatic_semicolon, + STATE(662), 1, sym_comment, - ACTIONS(1593), 59, + ACTIONS(991), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -67977,7 +70832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68028,15 +70882,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14266] = 4, + [14752] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(663), 1, sym_comment, - ACTIONS(958), 1, - ts_builtin_sym_end, - ACTIONS(960), 1, - sym__automatic_semicolon, - ACTIONS(868), 57, + ACTIONS(1641), 59, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -68059,6 +70914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -68093,10 +70949,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14335] = 2, + [14823] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(664), 1, sym_comment, - ACTIONS(1595), 59, + ACTIONS(1643), 59, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68156,12 +71016,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14400] = 2, + [14894] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(665), 1, sym_comment, - ACTIONS(1597), 59, + ACTIONS(930), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(928), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -68184,7 +71050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -68219,10 +71084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14465] = 2, + [14967] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1003), 1, + sym__automatic_semicolon, + STATE(666), 1, sym_comment, - ACTIONS(1599), 59, + ACTIONS(967), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68231,7 +71102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68282,10 +71152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14530] = 2, + [15040] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1005), 1, + sym__automatic_semicolon, + STATE(667), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(975), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68294,7 +71170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68345,12 +71220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14595] = 2, + [15113] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1645), 1, + ts_builtin_sym_end, + STATE(668), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1627), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -68373,7 +71253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -68408,10 +71287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14660] = 2, + [15185] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(669), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1635), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68420,7 +71303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68471,14 +71353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14725] = 4, + [15255] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(952), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1647), 1, ts_builtin_sym_end, - ACTIONS(954), 1, - sym__automatic_semicolon, - ACTIONS(860), 57, + STATE(670), 1, + sym_comment, + ACTIONS(1629), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -68536,10 +71420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14794] = 2, + [15327] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(671), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1633), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68548,7 +71436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68599,10 +71486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14859] = 2, + [15397] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(672), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1637), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68611,7 +71502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68662,10 +71552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14924] = 2, + [15467] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(673), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1615), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68674,7 +71568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68725,10 +71618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [14989] = 2, + [15537] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(674), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1639), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68737,7 +71634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68788,10 +71684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15054] = 2, + [15607] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(675), 1, sym_comment, - ACTIONS(1467), 59, + ACTIONS(1639), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68800,7 +71700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -68851,10 +71750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15119] = 2, + [15677] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(676), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1527), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68913,10 +71816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15183] = 2, + [15747] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(677), 1, sym_comment, - ACTIONS(1553), 58, + ACTIONS(1611), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -68975,10 +71882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15247] = 2, + [15817] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(678), 1, sym_comment, - ACTIONS(1533), 58, + ACTIONS(1609), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -69037,20 +71948,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15311] = 3, + [15887] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(679), 1, sym_comment, - ACTIONS(1601), 1, - ts_builtin_sym_end, - ACTIONS(1555), 57, + ACTIONS(1643), 58, 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, @@ -69066,6 +71979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69100,10 +72014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15377] = 2, + [15957] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(680), 1, sym_comment, - ACTIONS(1537), 58, + ACTIONS(1603), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -69162,10 +72080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15441] = 2, + [16027] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(681), 1, sym_comment, - ACTIONS(1539), 58, + ACTIONS(1641), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -69224,20 +72146,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15505] = 3, + [16097] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(682), 1, sym_comment, - ACTIONS(1603), 1, - ts_builtin_sym_end, - ACTIONS(1551), 57, + ACTIONS(1627), 58, 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, @@ -69253,6 +72177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69287,20 +72212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15571] = 3, + [16167] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(683), 1, sym_comment, - ACTIONS(1605), 1, - ts_builtin_sym_end, - ACTIONS(1553), 57, + ACTIONS(1599), 58, 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, @@ -69316,6 +72243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69350,18 +72278,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15637] = 2, + [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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1649), 1, + ts_builtin_sym_end, + STATE(685), 1, sym_comment, - ACTIONS(1541), 58, + ACTIONS(1631), 57, 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, @@ -69377,7 +72387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69412,18 +72421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15701] = 2, + [16399] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(686), 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_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -69439,7 +72454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69474,12 +72488,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15765] = 3, + [16471] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1533), 1, ts_builtin_sym_end, - ACTIONS(1569), 57, + STATE(687), 1, + sym_comment, + ACTIONS(1509), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -69487,7 +72505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -69503,6 +72520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69537,10 +72555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15831] = 2, + [16543] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(688), 1, sym_comment, - ACTIONS(1545), 58, + ACTIONS(1625), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -69599,12 +72621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15895] = 3, + [16613] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1609), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1653), 1, ts_builtin_sym_end, - ACTIONS(1497), 57, + STATE(689), 1, + sym_comment, + ACTIONS(1621), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -69662,18 +72688,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [15961] = 2, + [16685] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1655), 1, + ts_builtin_sym_end, + STATE(690), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1619), 57, 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, @@ -69689,7 +72721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69724,10 +72755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16025] = 2, + [16757] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(691), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1591), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -69786,18 +72821,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16089] = 2, + [16827] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1657), 1, + ts_builtin_sym_end, + STATE(692), 1, sym_comment, - ACTIONS(1547), 58, + ACTIONS(1617), 57, 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, @@ -69813,7 +72854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69848,14 +72888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16153] = 3, + [16899] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(693), 1, sym_comment, - ACTIONS(886), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(884), 56, + ACTIONS(1623), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -69877,6 +72919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -69911,12 +72954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16219] = 3, + [16969] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1611), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, ts_builtin_sym_end, - ACTIONS(1495), 57, + STATE(694), 1, + sym_comment, + ACTIONS(874), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -69974,12 +73021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16285] = 3, + [17041] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1659), 1, ts_builtin_sym_end, - ACTIONS(1493), 57, + STATE(695), 1, + sym_comment, + ACTIONS(1613), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70037,12 +73088,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16351] = 2, + [17113] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(696), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(989), 2, + sym__automatic_semicolon, + ts_builtin_sym_end, + ACTIONS(987), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -70064,7 +73121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70099,20 +73155,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16415] = 3, + [17185] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(697), 1, sym_comment, - ACTIONS(1615), 1, - ts_builtin_sym_end, - ACTIONS(1529), 57, + ACTIONS(1573), 58, 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, @@ -70128,6 +73186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70162,12 +73221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16481] = 3, + [17255] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1661), 1, ts_builtin_sym_end, - ACTIONS(1553), 57, + STATE(698), 1, + sym_comment, + ACTIONS(1591), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70225,20 +73288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16547] = 3, + [17327] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(699), 1, sym_comment, - ACTIONS(1607), 1, - ts_builtin_sym_end, - ACTIONS(1569), 57, + ACTIONS(1571), 58, 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, @@ -70254,6 +73319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70288,10 +73354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16613] = 2, + [17397] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(700), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1589), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -70350,20 +73420,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16677] = 3, + [17467] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(701), 1, sym_comment, - ACTIONS(1617), 1, - ts_builtin_sym_end, - ACTIONS(1523), 57, + ACTIONS(1565), 58, 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, @@ -70379,6 +73451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70413,20 +73486,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16743] = 3, + [17537] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(702), 1, sym_comment, - ACTIONS(1619), 1, - ts_builtin_sym_end, - ACTIONS(1521), 57, + ACTIONS(1521), 58, 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, @@ -70442,6 +73517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70476,14 +73552,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16809] = 4, + [17607] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(703), 1, sym_comment, - ACTIONS(952), 1, + ACTIONS(1521), 58, + 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_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, + 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, + [17677] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(704), 1, + sym_comment, + ACTIONS(1521), 58, + 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_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, + 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, + [17747] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1041), 1, ts_builtin_sym_end, - ACTIONS(1035), 1, + ACTIONS(1071), 1, sym__automatic_semicolon, - ACTIONS(860), 56, + STATE(705), 1, + sym_comment, + ACTIONS(896), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70540,10 +73752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16877] = 2, + [17821] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(706), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -70602,20 +73818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [16941] = 3, + [17891] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(707), 1, sym_comment, - ACTIONS(1621), 1, - ts_builtin_sym_end, - ACTIONS(1579), 57, + ACTIONS(1521), 58, 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, @@ -70631,6 +73849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70665,20 +73884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17007] = 3, + [17961] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(708), 1, sym_comment, - ACTIONS(1623), 1, - ts_builtin_sym_end, - ACTIONS(1503), 57, + ACTIONS(1521), 58, 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, @@ -70694,6 +73915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70728,14 +73950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17073] = 4, + [18031] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(999), 1, ts_builtin_sym_end, - ACTIONS(1043), 1, + ACTIONS(1063), 1, sym__automatic_semicolon, - ACTIONS(868), 56, + STATE(709), 1, + sym_comment, + ACTIONS(904), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70792,10 +74018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17141] = 2, + [18105] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(710), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -70854,14 +74084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17205] = 4, + [18175] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(965), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1053), 1, ts_builtin_sym_end, - ACTIONS(1045), 1, + ACTIONS(1095), 1, sym__automatic_semicolon, - ACTIONS(888), 56, + STATE(711), 1, + sym_comment, + ACTIONS(912), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70918,20 +74152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17273] = 3, + [18249] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(712), 1, sym_comment, - ACTIONS(1625), 1, - ts_builtin_sym_end, - ACTIONS(1527), 57, + ACTIONS(1521), 58, 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, @@ -70947,6 +74183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -70981,10 +74218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17339] = 2, + [18319] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(713), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -71043,10 +74284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17403] = 2, + [18389] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(714), 1, sym_comment, - ACTIONS(1511), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -71105,20 +74350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17467] = 3, + [18459] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(715), 1, sym_comment, - ACTIONS(1627), 1, - ts_builtin_sym_end, - ACTIONS(1575), 57, + ACTIONS(1521), 58, 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, @@ -71134,6 +74381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -71168,20 +74416,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17533] = 3, + [18529] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(716), 1, sym_comment, - ACTIONS(1629), 1, - ts_builtin_sym_end, - ACTIONS(1525), 57, + ACTIONS(1521), 58, 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, @@ -71197,6 +74447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -71231,10 +74482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17599] = 2, + [18599] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(717), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -71293,20 +74548,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17663] = 3, + [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, - ACTIONS(1631), 1, - ts_builtin_sym_end, - ACTIONS(1467), 57, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(719), 1, + sym_comment, + ACTIONS(1521), 58, 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, @@ -71322,6 +74655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -71356,20 +74690,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17729] = 3, + [18829] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(720), 1, sym_comment, - ACTIONS(1633), 1, - ts_builtin_sym_end, - ACTIONS(1507), 57, + ACTIONS(1521), 58, 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, @@ -71385,6 +74721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -71419,10 +74756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17795] = 2, + [18899] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(721), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -71481,10 +74822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17859] = 2, + [18969] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(722), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -71543,13 +74888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17923] = 3, + [19039] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(723), 1, sym_comment, - ACTIONS(1505), 1, - ts_builtin_sym_end, - ACTIONS(1437), 57, + ACTIONS(1521), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -71571,7 +74919,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -71606,8 +74954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [17989] = 2, + [19109] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(724), 1, sym_comment, ACTIONS(1521), 58, anon_sym_export, @@ -71668,10 +75020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18053] = 2, + [19179] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(725), 1, sym_comment, - ACTIONS(1523), 58, + ACTIONS(1521), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -71730,10 +75086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18117] = 2, + [19249] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(726), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1529), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -71792,20 +75152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18181] = 3, + [19319] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(727), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1531), 58, 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, @@ -71821,6 +75183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -71855,12 +75218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18247] = 3, + [19389] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1663), 1, ts_builtin_sym_end, - ACTIONS(846), 57, + STATE(728), 1, + sym_comment, + ACTIONS(1607), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -71918,18 +75285,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18313] = 2, + [19461] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1665), 1, + ts_builtin_sym_end, + STATE(729), 1, sym_comment, - ACTIONS(1495), 58, + ACTIONS(1605), 57, 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, @@ -71945,7 +75318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -71980,12 +75352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18377] = 3, + [19533] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1667), 1, ts_builtin_sym_end, - ACTIONS(1547), 57, + STATE(730), 1, + sym_comment, + ACTIONS(1601), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -72043,20 +75419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18443] = 3, + [19605] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(731), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1539), 58, 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, @@ -72072,6 +75450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -72106,10 +75485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18509] = 2, + [19675] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(732), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1539), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72168,10 +75551,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18573] = 2, + [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, - ACTIONS(1493), 58, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(734), 1, + sym_comment, + ACTIONS(1543), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72230,10 +75693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18637] = 2, + [19905] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(735), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1543), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72292,10 +75759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18701] = 2, + [19975] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(736), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1543), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72354,10 +75825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18765] = 2, + [20045] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(737), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1543), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72416,20 +75891,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18829] = 3, + [20115] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(738), 1, sym_comment, - ACTIONS(1639), 1, - ts_builtin_sym_end, - ACTIONS(1545), 57, + ACTIONS(1587), 58, 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, @@ -72445,6 +75922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -72479,15 +75957,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18895] = 4, + [20185] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(739), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(1641), 1, - sym__automatic_semicolon, - ACTIONS(880), 56, + ACTIONS(1545), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -72509,6 +75988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -72543,10 +76023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [18963] = 2, + [20255] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(740), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1543), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72605,10 +76089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19027] = 2, + [20325] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(741), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1543), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72667,10 +76155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19091] = 2, + [20395] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(742), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1547), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -72729,18 +76221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19155] = 2, + [20465] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1669), 1, + ts_builtin_sym_end, + STATE(743), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1595), 57, 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, @@ -72756,7 +76254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -72791,18 +76288,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19219] = 2, + [20537] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1671), 1, + ts_builtin_sym_end, + STATE(744), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1589), 57, 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, @@ -72818,7 +76321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -72853,18 +76355,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19283] = 2, + [20609] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1673), 1, + ts_builtin_sym_end, + STATE(745), 1, sym_comment, - ACTIONS(1509), 58, + ACTIONS(1587), 57, 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, @@ -72880,7 +76388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -72915,12 +76422,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19347] = 3, + [20681] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1675), 1, ts_builtin_sym_end, - ACTIONS(1589), 57, + STATE(746), 1, + sym_comment, + ACTIONS(1593), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -72978,12 +76489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19413] = 3, + [20753] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(747), 1, sym_comment, - ACTIONS(1645), 1, + ACTIONS(930), 2, + sym__automatic_semicolon, ts_builtin_sym_end, - ACTIONS(1591), 57, + ACTIONS(928), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -72991,7 +76507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -73041,12 +76556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19479] = 3, + [20825] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1587), 57, + STATE(748), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -73104,12 +76623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19545] = 3, + [20897] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1585), 57, + STATE(749), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -73167,10 +76690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19611] = 2, + [20969] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(750), 1, sym_comment, - ACTIONS(1507), 58, + ACTIONS(1549), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -73229,20 +76756,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19675] = 3, + [21039] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(751), 1, sym_comment, - ACTIONS(1605), 1, - ts_builtin_sym_end, - ACTIONS(1553), 57, + ACTIONS(1551), 58, 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, @@ -73258,6 +76787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -73292,12 +76822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19741] = 3, + [21109] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1651), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1511), 57, + STATE(752), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -73355,10 +76889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19807] = 2, + [21181] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(753), 1, sym_comment, - ACTIONS(1551), 58, + ACTIONS(1553), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -73417,10 +76955,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19871] = 2, + [21251] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(754), 1, sym_comment, - ACTIONS(1553), 58, + ACTIONS(1555), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -73479,20 +77021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [19935] = 3, + [21321] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(755), 1, sym_comment, - ACTIONS(1653), 1, - ts_builtin_sym_end, - ACTIONS(1583), 57, + ACTIONS(1557), 58, 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, @@ -73508,6 +77052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -73542,10 +77087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20001] = 2, + [21391] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(756), 1, sym_comment, - ACTIONS(1497), 58, + ACTIONS(1579), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -73604,12 +77153,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20065] = 3, + [21461] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(757), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(1559), 58, + 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_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, + 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, + [21531] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(932), 1, ts_builtin_sym_end, - ACTIONS(1579), 57, + ACTIONS(1047), 1, + sym__automatic_semicolon, + STATE(758), 1, + sym_comment, + ACTIONS(864), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -73617,7 +77238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -73667,18 +77287,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20131] = 2, + [21605] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(759), 1, sym_comment, - ACTIONS(1553), 58, + ACTIONS(1519), 57, 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, @@ -73694,7 +77320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -73729,12 +77354,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20195] = 3, + [21677] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1655), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1577), 57, + STATE(760), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -73792,20 +77421,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20261] = 3, + [21749] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(761), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1563), 58, 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, @@ -73821,6 +77452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -73855,12 +77487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20327] = 3, + [21819] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, + STATE(762), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -73918,10 +77554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20393] = 2, + [21891] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(763), 1, sym_comment, - ACTIONS(1555), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -73980,20 +77620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20457] = 3, + [21961] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(764), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 58, 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, @@ -74009,6 +77651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74043,75 +77686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20523] = 3, + [22031] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, - 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_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, - [20589] = 3, - ACTIONS(3), 1, + STATE(765), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -74169,20 +77753,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20655] = 3, + [22103] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(766), 1, sym_comment, - ACTIONS(1657), 1, - ts_builtin_sym_end, - ACTIONS(1571), 57, + ACTIONS(1519), 58, 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, @@ -74198,6 +77784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74232,20 +77819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20721] = 3, + [22173] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(767), 1, sym_comment, - ACTIONS(1659), 1, - ts_builtin_sym_end, - ACTIONS(1491), 57, + ACTIONS(1519), 58, 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, @@ -74261,6 +77850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74295,20 +77885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20787] = 3, + [22243] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(768), 1, sym_comment, - ACTIONS(1661), 1, - ts_builtin_sym_end, - ACTIONS(1567), 57, + ACTIONS(1519), 58, 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, @@ -74324,6 +77916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74358,12 +77951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20853] = 3, + [22313] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1663), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1565), 57, + STATE(769), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -74421,20 +78018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20919] = 3, + [22385] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(770), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 58, 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, @@ -74450,6 +78049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74484,12 +78084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [20985] = 3, + [22455] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1489), 57, + STATE(771), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -74547,20 +78151,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21051] = 3, + [22527] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(772), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 58, 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, @@ -74576,6 +78182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74610,12 +78217,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21117] = 3, + [22597] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1563), 57, + STATE(773), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -74673,15 +78284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21183] = 4, + [22669] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(774), 1, sym_comment, - ACTIONS(840), 1, - ts_builtin_sym_end, - ACTIONS(971), 1, - sym__automatic_semicolon, - ACTIONS(820), 56, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -74703,6 +78315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74737,20 +78350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21251] = 3, + [22739] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(775), 1, sym_comment, - ACTIONS(1669), 1, - ts_builtin_sym_end, - ACTIONS(1487), 57, + ACTIONS(1519), 58, 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, @@ -74766,6 +78381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74800,20 +78416,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21317] = 3, + [22809] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(776), 1, sym_comment, - ACTIONS(1671), 1, - ts_builtin_sym_end, - ACTIONS(1561), 57, + ACTIONS(1519), 58, 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, @@ -74829,6 +78447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74863,20 +78482,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21383] = 3, + [22879] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(777), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 58, 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, @@ -74892,6 +78513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74926,20 +78548,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21449] = 3, + [22949] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(778), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 58, 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, @@ -74955,6 +78579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -74989,13 +78614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21515] = 3, + [23019] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(779), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(880), 57, + ACTIONS(1519), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -75017,7 +78645,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -75052,75 +78680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21581] = 3, + [23089] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, - 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_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, - [21647] = 3, - ACTIONS(3), 1, + STATE(780), 1, sym_comment, - ACTIONS(848), 1, - ts_builtin_sym_end, - ACTIONS(846), 57, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75128,6 +78697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -75143,7 +78713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -75178,10 +78747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21713] = 2, + [23161] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(781), 1, sym_comment, - ACTIONS(1553), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -75240,10 +78813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21777] = 2, + [23231] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(782), 1, sym_comment, - ACTIONS(1525), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -75302,12 +78879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21841] = 3, + [23301] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1483), 57, + STATE(783), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75365,18 +78946,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21907] = 2, + [23373] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(784), 1, sym_comment, - ACTIONS(1553), 58, + ACTIONS(1519), 57, 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, @@ -75392,7 +78979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -75427,12 +79013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [21971] = 3, + [23445] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1553), 57, + STATE(785), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75490,10 +79080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22037] = 2, + [23517] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(786), 1, sym_comment, - ACTIONS(1553), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -75552,20 +79146,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22101] = 3, + [23587] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(787), 1, sym_comment, - ACTIONS(1675), 1, - ts_builtin_sym_end, - ACTIONS(1573), 57, + ACTIONS(1519), 58, 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, @@ -75581,6 +79177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -75615,12 +79212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22167] = 3, + [23657] = 5, ACTIONS(3), 1, - sym_comment, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1593), 57, + STATE(788), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75678,18 +79279,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22233] = 2, + [23729] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(789), 1, sym_comment, - ACTIONS(1569), 58, + ACTIONS(1519), 57, 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, @@ -75705,7 +79312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -75740,18 +79346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22297] = 2, + [23801] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(790), 1, sym_comment, - ACTIONS(1569), 58, + ACTIONS(1519), 57, 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, @@ -75767,7 +79379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -75802,12 +79413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22361] = 3, + [23873] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1679), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1595), 57, + STATE(791), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75865,12 +79480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22427] = 3, + [23945] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1681), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1597), 57, + STATE(792), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -75928,20 +79547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22493] = 3, + [24017] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(793), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 58, 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, @@ -75957,6 +79578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -75991,10 +79613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22559] = 2, + [24087] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(794), 1, sym_comment, - ACTIONS(1527), 58, + ACTIONS(1519), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -76053,20 +79679,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22623] = 3, + [24157] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(795), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1519), 58, 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, @@ -76082,6 +79710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -76116,14 +79745,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22689] = 4, + [24227] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1035), 1, ts_builtin_sym_end, - ACTIONS(1683), 1, + ACTIONS(1061), 1, sym__automatic_semicolon, - ACTIONS(820), 56, + STATE(796), 1, + sym_comment, + ACTIONS(991), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76180,14 +79813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22757] = 4, + [24301] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(973), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1031), 1, ts_builtin_sym_end, - ACTIONS(1041), 1, + ACTIONS(1097), 1, sym__automatic_semicolon, - ACTIONS(896), 56, + STATE(797), 1, + sym_comment, + ACTIONS(975), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76244,14 +79881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22825] = 4, + [24375] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(977), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1021), 1, ts_builtin_sym_end, - ACTIONS(1023), 1, + ACTIONS(1087), 1, sym__automatic_semicolon, - ACTIONS(906), 56, + STATE(798), 1, + sym_comment, + ACTIONS(967), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76308,14 +79949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22893] = 4, + [24449] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(983), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1029), 1, - sym__automatic_semicolon, - ACTIONS(914), 56, + STATE(799), 1, + sym_comment, + ACTIONS(1519), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76323,6 +79966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -76372,12 +80016,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [22961] = 3, + [24521] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(800), 1, sym_comment, - ACTIONS(882), 1, + ACTIONS(1593), 58, + 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_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, + 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, + [24591] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1679), 1, ts_builtin_sym_end, - ACTIONS(880), 57, + STATE(801), 1, + sym_comment, + ACTIONS(1563), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76435,12 +80149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23027] = 3, + [24663] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1685), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1681), 1, ts_builtin_sym_end, - ACTIONS(1599), 57, + STATE(802), 1, + sym_comment, + ACTIONS(1559), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76498,12 +80216,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23093] = 3, + [24735] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(803), 1, sym_comment, - ACTIONS(1635), 1, + ACTIONS(1595), 58, + 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_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, + 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, + [24805] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1683), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, + STATE(804), 1, + sym_comment, + ACTIONS(1557), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76561,12 +80349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23159] = 3, + [24877] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1685), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, + STATE(805), 1, + sym_comment, + ACTIONS(1555), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76624,14 +80416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23225] = 3, + [24949] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(806), 1, sym_comment, - ACTIONS(882), 2, - sym__automatic_semicolon, - ts_builtin_sym_end, - ACTIONS(880), 56, + ACTIONS(1601), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -76653,6 +80447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -76687,10 +80482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23291] = 2, + [25019] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(807), 1, sym_comment, - ACTIONS(1529), 58, + ACTIONS(1605), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -76749,20 +80548,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23355] = 3, + [25089] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(808), 1, sym_comment, - ACTIONS(1631), 1, - ts_builtin_sym_end, - ACTIONS(1467), 57, + ACTIONS(1607), 58, 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, @@ -76778,6 +80579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -76812,12 +80614,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23421] = 3, + [25159] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1687), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, + STATE(809), 1, + sym_comment, + ACTIONS(1553), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76875,12 +80681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23487] = 3, + [25231] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1689), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, + STATE(810), 1, + sym_comment, + ACTIONS(1551), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76938,13 +80748,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23553] = 3, + [25303] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + ts_builtin_sym_end, + STATE(811), 1, sym_comment, - ACTIONS(848), 2, - sym__automatic_semicolon, + ACTIONS(874), 57, + anon_sym_export, + 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, + 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_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, + [25375] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, ts_builtin_sym_end, - ACTIONS(846), 56, + STATE(812), 1, + sym_comment, + ACTIONS(939), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -76967,6 +80847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_finally, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -77001,12 +80882,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23619] = 3, + [25447] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(932), 1, ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(1691), 1, + sym__automatic_semicolon, + STATE(813), 1, + sym_comment, + ACTIONS(864), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77014,7 +80901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -77064,12 +80950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23685] = 3, + [25521] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1693), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(814), 1, + sym_comment, + ACTIONS(1549), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77127,12 +81017,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23751] = 3, + [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, - ACTIONS(1631), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(816), 1, + sym_comment, + ACTIONS(876), 2, + sym__automatic_semicolon, ts_builtin_sym_end, - ACTIONS(1467), 57, + ACTIONS(874), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77140,7 +81111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -77190,12 +81160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23817] = 3, + [25755] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1695), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(817), 1, + sym_comment, + ACTIONS(1547), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77253,12 +81227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23883] = 3, + [25827] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(818), 1, sym_comment, - ACTIONS(1635), 1, + ACTIONS(941), 2, + sym__automatic_semicolon, ts_builtin_sym_end, - ACTIONS(1509), 57, + ACTIONS(939), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77266,7 +81245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -77316,12 +81294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [23949] = 3, + [25899] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1687), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, ts_builtin_sym_end, - ACTIONS(1533), 57, + STATE(819), 1, + sym_comment, + ACTIONS(1543), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77379,12 +81361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24015] = 3, + [25971] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1689), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, ts_builtin_sym_end, - ACTIONS(1559), 57, + STATE(820), 1, + sym_comment, + ACTIONS(1543), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77442,18 +81428,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24081] = 2, + [26043] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1699), 1, + ts_builtin_sym_end, + STATE(821), 1, sym_comment, - ACTIONS(1557), 58, + ACTIONS(1545), 57, 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, @@ -77469,7 +81461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -77504,18 +81495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24145] = 2, + [26115] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(822), 1, sym_comment, - ACTIONS(1559), 58, + ACTIONS(1543), 57, 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, @@ -77531,7 +81528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -77566,12 +81562,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24209] = 3, + [26187] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, ts_builtin_sym_end, - ACTIONS(1537), 57, + STATE(823), 1, + sym_comment, + ACTIONS(1543), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -77629,10 +81629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24275] = 2, + [26259] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(824), 1, sym_comment, - ACTIONS(1561), 58, + ACTIONS(874), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -77691,18 +81695,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24339] = 2, + [26329] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(825), 1, sym_comment, - ACTIONS(880), 58, + ACTIONS(1543), 57, 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, @@ -77718,7 +81728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -77753,10 +81762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24403] = 2, + [26401] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(826), 1, sym_comment, - ACTIONS(1563), 58, + ACTIONS(939), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -77815,18 +81828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24467] = 2, + [26471] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(827), 1, sym_comment, - ACTIONS(1565), 58, + ACTIONS(1543), 57, 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, @@ -77842,7 +81861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -77877,12 +81895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24531] = 2, + [26543] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1025), 1, + ts_builtin_sym_end, + ACTIONS(1077), 1, + sym__automatic_semicolon, + STATE(828), 1, sym_comment, - ACTIONS(1567), 58, + ACTIONS(920), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -77904,7 +81929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -77939,12 +81963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24595] = 3, + [26617] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1701), 1, ts_builtin_sym_end, - ACTIONS(1553), 57, + STATE(829), 1, + sym_comment, + ACTIONS(1539), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -78002,10 +82030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24661] = 2, + [26689] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(830), 1, sym_comment, - ACTIONS(1573), 58, + ACTIONS(1613), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -78064,18 +82096,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24725] = 2, + [26759] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1701), 1, + ts_builtin_sym_end, + STATE(831), 1, sym_comment, - ACTIONS(1575), 58, + ACTIONS(1539), 57, 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, @@ -78091,7 +82129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78126,18 +82163,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24789] = 2, + [26831] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1703), 1, + ts_builtin_sym_end, + STATE(832), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1585), 57, 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, @@ -78153,7 +82196,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78188,12 +82230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24853] = 3, + [26903] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1705), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(833), 1, + sym_comment, + ACTIONS(1583), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -78251,18 +82297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24919] = 2, + [26975] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1707), 1, + ts_builtin_sym_end, + STATE(834), 1, sym_comment, - ACTIONS(1571), 58, + ACTIONS(1531), 57, 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, @@ -78278,7 +82330,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78313,12 +82364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [24983] = 3, + [27047] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1693), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1709), 1, ts_builtin_sym_end, - ACTIONS(1539), 57, + STATE(835), 1, + sym_comment, + ACTIONS(1529), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -78376,20 +82431,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25049] = 3, + [27119] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(836), 1, sym_comment, - ACTIONS(1631), 1, - ts_builtin_sym_end, - ACTIONS(1467), 57, + ACTIONS(1617), 58, 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, @@ -78405,6 +82462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78439,20 +82497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25115] = 3, + [27189] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(837), 1, sym_comment, - ACTIONS(1631), 1, - ts_builtin_sym_end, - ACTIONS(1467), 57, + ACTIONS(1619), 58, 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, @@ -78468,6 +82528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78502,12 +82563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25181] = 3, + [27259] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(838), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -78565,18 +82630,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25247] = 2, + [27331] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(839), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1521), 57, 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, @@ -78592,7 +82663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78627,12 +82697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25311] = 3, + [27403] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(840), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -78690,20 +82764,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25377] = 3, + [27475] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(841), 1, sym_comment, - ACTIONS(1695), 1, - ts_builtin_sym_end, - ACTIONS(1541), 57, + ACTIONS(1621), 58, 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, @@ -78719,6 +82795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, + anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78753,18 +82830,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25443] = 2, + [27545] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(842), 1, sym_comment, - ACTIONS(1503), 58, + ACTIONS(1521), 57, 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, @@ -78780,7 +82863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -78815,12 +82897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25507] = 3, + [27617] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(843), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -78878,12 +82964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25573] = 3, + [27689] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1553), 57, + STATE(844), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -78941,12 +83031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25639] = 3, + [27761] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(845), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -79004,18 +83098,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25705] = 2, + [27833] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(846), 1, sym_comment, - ACTIONS(1577), 58, + ACTIONS(1521), 57, 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, @@ -79031,7 +83131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79066,12 +83165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25769] = 3, + [27905] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1011), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + ACTIONS(1089), 1, + sym__automatic_semicolon, + STATE(847), 1, + sym_comment, + ACTIONS(959), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -79079,7 +83184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -79129,14 +83233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25835] = 4, + [27979] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(882), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1697), 1, - sym__automatic_semicolon, - ACTIONS(880), 56, + STATE(848), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -79144,6 +83250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -79193,18 +83300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25903] = 2, + [28051] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(849), 1, sym_comment, - ACTIONS(1479), 58, + ACTIONS(1521), 57, 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, @@ -79220,7 +83333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79255,18 +83367,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [25967] = 2, + [28123] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(850), 1, sym_comment, - ACTIONS(1481), 58, + ACTIONS(1521), 57, 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, @@ -79282,7 +83400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79317,12 +83434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26031] = 3, + [28195] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(851), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -79380,14 +83501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26097] = 4, + [28267] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(989), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1037), 1, - sym__automatic_semicolon, - ACTIONS(922), 56, + STATE(852), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -79395,6 +83518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -79444,18 +83568,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26165] = 2, + [28339] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(853), 1, sym_comment, - ACTIONS(1579), 58, + ACTIONS(1521), 57, 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, @@ -79471,7 +83601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79506,10 +83635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26229] = 2, + [28411] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(854), 1, sym_comment, - ACTIONS(1579), 58, + ACTIONS(1629), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -79568,18 +83701,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26293] = 2, + [28481] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(855), 1, sym_comment, - ACTIONS(1583), 58, + ACTIONS(1521), 57, 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, @@ -79595,7 +83734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79630,12 +83768,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26357] = 3, + [28553] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(856), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1521), 57, + 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_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, + [28625] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(857), 1, + sym_comment, + ACTIONS(1521), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -79693,10 +83902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26423] = 2, + [28697] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(858), 1, sym_comment, - ACTIONS(1483), 58, + ACTIONS(1631), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -79755,18 +83968,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26487] = 2, + [28767] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(859), 1, sym_comment, - ACTIONS(1585), 58, + ACTIONS(1521), 57, 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, @@ -79782,7 +84001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79817,18 +84035,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26551] = 2, + [28839] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(860), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1521), 57, 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, @@ -79844,7 +84068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79879,18 +84102,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26615] = 2, + [28911] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(861), 1, sym_comment, - ACTIONS(1587), 58, + ACTIONS(1521), 57, 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, @@ -79906,7 +84135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -79941,18 +84169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26679] = 2, + [28983] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1713), 1, + ts_builtin_sym_end, + STATE(862), 1, sym_comment, - ACTIONS(1589), 58, + ACTIONS(1565), 57, 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, @@ -79968,7 +84202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80003,10 +84236,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26743] = 2, + [29055] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1715), 1, + ts_builtin_sym_end, + STATE(863), 1, sym_comment, - ACTIONS(846), 58, + ACTIONS(1603), 57, + 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_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, + [29127] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(864), 1, + sym_comment, + ACTIONS(1583), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -80065,14 +84369,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26807] = 4, + [29197] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1717), 1, + ts_builtin_sym_end, + STATE(865), 1, sym_comment, - ACTIONS(1017), 1, + ACTIONS(1609), 57, + 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_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, + [29269] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1719), 1, ts_builtin_sym_end, - ACTIONS(1039), 1, - sym__automatic_semicolon, - ACTIONS(852), 56, + STATE(866), 1, + sym_comment, + ACTIONS(1571), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -80080,6 +84453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -80129,18 +84503,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26875] = 2, + [29341] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1721), 1, + ts_builtin_sym_end, + STATE(867), 1, sym_comment, - ACTIONS(1487), 58, + ACTIONS(1573), 57, 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, @@ -80156,7 +84536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80191,10 +84570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26939] = 2, + [29413] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(868), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1585), 58, anon_sym_export, anon_sym_default, anon_sym_LBRACE, @@ -80253,18 +84636,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27003] = 2, + [29483] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1723), 1, + ts_builtin_sym_end, + STATE(869), 1, sym_comment, - ACTIONS(1591), 58, + ACTIONS(1611), 57, 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, @@ -80280,7 +84669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80315,18 +84703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27067] = 2, + [29555] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1725), 1, + ts_builtin_sym_end, + STATE(870), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1615), 57, 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, @@ -80342,7 +84736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80377,18 +84770,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27131] = 2, + [29627] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1727), 1, + ts_builtin_sym_end, + STATE(871), 1, sym_comment, - ACTIONS(1489), 58, + ACTIONS(1633), 57, 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, @@ -80404,7 +84803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80439,18 +84837,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27195] = 2, + [29699] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1729), 1, + ts_builtin_sym_end, + STATE(872), 1, sym_comment, - ACTIONS(1593), 58, + ACTIONS(1623), 57, 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, @@ -80466,7 +84870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80501,12 +84904,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27259] = 3, + [29771] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + ACTIONS(1731), 1, + sym__automatic_semicolon, + STATE(873), 1, + sym_comment, + ACTIONS(874), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -80514,7 +84923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -80564,12 +84972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27325] = 2, + [29845] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1567), 1, + ts_builtin_sym_end, + STATE(874), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1479), 57, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -80591,7 +85004,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80626,12 +85039,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27389] = 3, + [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, - ACTIONS(1631), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + ACTIONS(1733), 1, + sym__automatic_semicolon, + STATE(876), 1, + sym_comment, + ACTIONS(874), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -80639,7 +85134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -80689,13 +85183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27455] = 3, + [30081] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(878), 2, - sym__automatic_semicolon, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, ts_builtin_sym_end, - ACTIONS(876), 56, + STATE(877), 1, + sym_comment, + ACTIONS(939), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -80703,6 +85200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -80752,18 +85250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27521] = 2, + [30153] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1735), 1, + ts_builtin_sym_end, + STATE(878), 1, sym_comment, - ACTIONS(1595), 58, + ACTIONS(1635), 57, 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, @@ -80779,7 +85283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80814,18 +85317,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27585] = 2, + [30225] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1737), 1, + ts_builtin_sym_end, + STATE(879), 1, sym_comment, - ACTIONS(1597), 58, + ACTIONS(1625), 57, 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, @@ -80841,7 +85350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80876,18 +85384,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27649] = 2, + [30297] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1739), 1, + ts_builtin_sym_end, + STATE(880), 1, sym_comment, - ACTIONS(1491), 58, + ACTIONS(1639), 57, 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, @@ -80903,7 +85417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -80938,12 +85451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27713] = 3, + [30369] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1741), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(881), 1, + sym_comment, + ACTIONS(1527), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81001,12 +85518,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27779] = 3, + [30441] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1743), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(882), 1, + sym_comment, + ACTIONS(1641), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81064,13 +85585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27845] = 3, + [30513] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(883), 1, sym_comment, - ACTIONS(1499), 1, - ts_builtin_sym_end, - ACTIONS(1453), 57, + ACTIONS(1745), 58, anon_sym_export, + anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -81092,7 +85616,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -81127,12 +85651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27911] = 3, + [30583] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1699), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1739), 1, ts_builtin_sym_end, - ACTIONS(1557), 57, + STATE(884), 1, + sym_comment, + ACTIONS(1639), 57, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81190,18 +85718,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27977] = 2, + [30655] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1747), 1, + ts_builtin_sym_end, + STATE(885), 1, sym_comment, - ACTIONS(1599), 58, + ACTIONS(1643), 57, 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, @@ -81217,7 +85751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81252,18 +85785,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28041] = 2, + [30727] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1749), 1, + ts_builtin_sym_end, + STATE(886), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1637), 57, 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, @@ -81279,7 +85818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81314,18 +85852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28105] = 2, + [30799] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1751), 1, + ts_builtin_sym_end, + STATE(887), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1579), 57, 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, @@ -81341,7 +85885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81376,12 +85919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28169] = 2, + [30871] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(876), 1, + ts_builtin_sym_end, + STATE(888), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(874), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -81403,7 +85951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81438,12 +85985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28233] = 2, + [30942] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1675), 1, + ts_builtin_sym_end, + STATE(889), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1593), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -81465,7 +86017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81500,12 +86051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28297] = 3, + [31013] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1749), 1, ts_builtin_sym_end, - ACTIONS(1543), 57, + STATE(890), 1, + sym_comment, + ACTIONS(1637), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81513,7 +86068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -81563,12 +86117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28363] = 2, + [31084] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(891), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1543), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -81590,7 +86149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81625,12 +86183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28427] = 3, + [31155] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1703), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1481), 57, + STATE(892), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81638,7 +86200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -81688,12 +86249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28493] = 2, + [31226] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1739), 1, + ts_builtin_sym_end, + STATE(893), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1639), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -81715,7 +86281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81750,12 +86315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28557] = 3, + [31297] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1739), 1, ts_builtin_sym_end, - ACTIONS(1467), 57, + STATE(894), 1, + sym_comment, + ACTIONS(1639), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81763,7 +86332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -81813,12 +86381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28623] = 2, + [31368] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(895), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1519), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -81840,7 +86413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81875,12 +86447,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28687] = 2, + [31439] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(896), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1519), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -81902,7 +86479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -81937,12 +86513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28751] = 3, + [31510] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1479), 57, + STATE(897), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -81950,7 +86530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -82000,12 +86579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28817] = 2, + [31581] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(898), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1543), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -82027,7 +86611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -82062,12 +86645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28881] = 2, + [31652] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(899), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1519), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -82089,7 +86677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -82124,12 +86711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [28945] = 2, + [31723] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1741), 1, + ts_builtin_sym_end, + STATE(900), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1527), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -82151,7 +86743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -82186,12 +86777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29009] = 2, + [31794] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, + ts_builtin_sym_end, + STATE(901), 1, sym_comment, - ACTIONS(1467), 58, + ACTIONS(1521), 56, anon_sym_export, - anon_sym_default, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_import, @@ -82213,7 +86809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_SEMI, - anon_sym_case, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -82248,12 +86843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29073] = 3, + [31865] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1721), 1, ts_builtin_sym_end, - ACTIONS(1543), 56, + STATE(902), 1, + sym_comment, + ACTIONS(1573), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82310,12 +86909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29138] = 3, + [31936] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1579), 56, + STATE(903), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82372,12 +86975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29203] = 3, + [32007] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1613), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1493), 56, + STATE(904), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82434,12 +87041,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29268] = 3, + [32078] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(905), 1, sym_comment, - ACTIONS(1611), 1, + ACTIONS(1519), 56, + anon_sym_export, + 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, + 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, + 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, + [32149] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1495), 56, + STATE(906), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82496,12 +87173,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29333] = 3, + [32220] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(907), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82558,12 +87239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29398] = 3, + [32291] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(908), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82620,12 +87305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29463] = 3, + [32362] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1747), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(909), 1, + sym_comment, + ACTIONS(1643), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82682,12 +87371,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29528] = 3, + [32433] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(910), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82744,12 +87437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29593] = 3, + [32504] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(911), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82806,12 +87503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29658] = 3, + [32575] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(912), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82868,12 +87569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29723] = 3, + [32646] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1609), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1753), 1, ts_builtin_sym_end, - ACTIONS(1497), 56, + STATE(913), 1, + sym_comment, + ACTIONS(1745), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82930,12 +87635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29788] = 3, + [32717] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1487), 56, + STATE(914), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82992,12 +87701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29853] = 3, + [32788] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(915), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83054,12 +87767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29918] = 3, + [32859] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1699), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1557), 56, + STATE(916), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83116,12 +87833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [29983] = 3, + [32930] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1719), 1, ts_builtin_sym_end, - ACTIONS(1489), 56, + STATE(917), 1, + sym_comment, + ACTIONS(1571), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83178,12 +87899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30048] = 3, + [33001] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1603), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1551), 56, + STATE(918), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83240,12 +87965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30113] = 3, + [33072] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1553), 56, + STATE(919), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83302,12 +88031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30178] = 3, + [33143] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1701), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(920), 1, + sym_comment, + ACTIONS(1539), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83364,12 +88097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30243] = 3, + [33214] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1701), 1, ts_builtin_sym_end, - ACTIONS(1553), 56, + STATE(921), 1, + sym_comment, + ACTIONS(1539), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83426,12 +88163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30308] = 3, + [33285] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1601), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1555), 56, + STATE(922), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83488,12 +88229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30373] = 3, + [33356] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1649), 1, ts_builtin_sym_end, - ACTIONS(1553), 56, + STATE(923), 1, + sym_comment, + ACTIONS(1631), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83550,12 +88295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30438] = 3, + [33427] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1713), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(924), 1, + sym_comment, + ACTIONS(1565), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83612,12 +88361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30503] = 3, + [33498] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1751), 1, ts_builtin_sym_end, - ACTIONS(1491), 56, + STATE(925), 1, + sym_comment, + ACTIONS(1579), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83674,12 +88427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30568] = 3, + [33569] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1729), 1, ts_builtin_sym_end, - ACTIONS(1553), 56, + STATE(926), 1, + sym_comment, + ACTIONS(1623), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83736,12 +88493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30633] = 3, + [33640] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1663), 1, ts_builtin_sym_end, - ACTIONS(1553), 56, + STATE(927), 1, + sym_comment, + ACTIONS(1607), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83798,12 +88559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30698] = 3, + [33711] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1615), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1647), 1, ts_builtin_sym_end, - ACTIONS(1529), 56, + STATE(928), 1, + sym_comment, + ACTIONS(1629), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83860,12 +88625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30763] = 3, + [33782] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(929), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83922,12 +88691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30828] = 3, + [33853] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(930), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83984,136 +88757,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [30893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - ts_builtin_sym_end, - ACTIONS(1563), 56, - anon_sym_export, - anon_sym_LBRACE, + [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, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, + ACTIONS(1759), 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(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_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_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_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, - [30958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1689), 1, - ts_builtin_sym_end, - ACTIONS(1559), 56, - anon_sym_export, - 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, - 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, + 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_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, - [31023] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [34011] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1685), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1599), 56, + STATE(932), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84170,74 +88897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31088] = 3, + [34082] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1671), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(941), 1, ts_builtin_sym_end, - ACTIONS(1561), 56, - anon_sym_export, - 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, - 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, - 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, - [31153] = 3, - ACTIONS(3), 1, + STATE(933), 1, sym_comment, - ACTIONS(1681), 1, - ts_builtin_sym_end, - ACTIONS(1597), 56, + ACTIONS(939), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84294,74 +88963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31218] = 3, + [34153] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1605), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1665), 1, ts_builtin_sym_end, - ACTIONS(1553), 56, - anon_sym_export, - 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, - 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, - 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, - [31283] = 3, - ACTIONS(3), 1, + STATE(934), 1, sym_comment, - ACTIONS(848), 1, - ts_builtin_sym_end, - ACTIONS(846), 56, + ACTIONS(1605), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84418,74 +89029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31348] = 3, + [34224] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1569), 56, - anon_sym_export, - 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, - 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, - 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, - [31413] = 3, - ACTIONS(3), 1, + STATE(935), 1, sym_comment, - ACTIONS(1635), 1, - ts_builtin_sym_end, - ACTIONS(1509), 56, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84542,74 +89095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31478] = 3, + [34295] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1569), 56, - anon_sym_export, - 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, - 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, - 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, - [31543] = 3, - ACTIONS(3), 1, + STATE(936), 1, sym_comment, - ACTIONS(1633), 1, - ts_builtin_sym_end, - ACTIONS(1507), 56, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84666,12 +89161,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31608] = 3, + [34366] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(937), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84728,12 +89227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31673] = 3, + [34437] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1743), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(938), 1, + sym_comment, + ACTIONS(1641), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84790,12 +89293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31738] = 3, + [34508] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1689), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(939), 1, + sym_comment, + ACTIONS(1551), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84852,12 +89359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31803] = 3, + [34579] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1705), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(940), 1, + sym_comment, + ACTIONS(1583), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84914,12 +89425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31868] = 3, + [34650] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1673), 1, ts_builtin_sym_end, - ACTIONS(1525), 56, + STATE(941), 1, + sym_comment, + ACTIONS(1587), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84976,12 +89491,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31933] = 3, + [34721] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1625), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1671), 1, ts_builtin_sym_end, - ACTIONS(1527), 56, + STATE(942), 1, + sym_comment, + ACTIONS(1589), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85038,12 +89557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [31998] = 3, + [34792] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1623), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1669), 1, ts_builtin_sym_end, - ACTIONS(1503), 56, + STATE(943), 1, + sym_comment, + ACTIONS(1595), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85100,12 +89623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32063] = 3, + [34863] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1523), 56, + STATE(944), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85162,11 +89689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32128] = 3, + [34934] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1619), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, + STATE(945), 1, + sym_comment, ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, @@ -85224,12 +89755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32193] = 3, + [35005] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(946), 1, + sym_comment, + ACTIONS(1543), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85286,12 +89821,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32258] = 3, - ACTIONS(3), 1, + [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, - ACTIONS(1635), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(948), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85348,12 +89961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32323] = 3, + [35234] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(949), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85410,82 +90027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32388] = 11, - ACTIONS(1188), 1, - anon_sym_COLON, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1209), 1, - anon_sym_RBRACE, - ACTIONS(1711), 1, - anon_sym_LPAREN, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1716), 1, - anon_sym_EQ_GT, - STATE(1986), 1, - aux_sym_object_repeat1, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1709), 14, - 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_BQUOTE, - ACTIONS(1718), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1707), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [32469] = 3, + [35305] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1663), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1565), 56, + STATE(950), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85542,82 +90093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32534] = 11, - ACTIONS(1188), 1, - anon_sym_COLON, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1207), 1, - anon_sym_RBRACE, - ACTIONS(1711), 1, - anon_sym_LPAREN, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1716), 1, - anon_sym_EQ_GT, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, - aux_sym_object_repeat1, - ACTIONS(1709), 14, - 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_BQUOTE, - ACTIONS(1718), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1707), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [32615] = 3, + [35376] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1567), 56, + STATE(951), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85674,12 +90159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32680] = 3, + [35447] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1715), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(952), 1, + sym_comment, + ACTIONS(1603), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85736,12 +90225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32745] = 3, + [35518] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1695), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(953), 1, + sym_comment, + ACTIONS(1547), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85798,12 +90291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32810] = 3, + [35589] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1675), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1737), 1, ts_builtin_sym_end, - ACTIONS(1573), 56, + STATE(954), 1, + sym_comment, + ACTIONS(1625), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85860,12 +90357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32875] = 3, + [35660] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1679), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1595), 56, + STATE(955), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85922,12 +90423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [32940] = 3, + [35731] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1635), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1677), 1, ts_builtin_sym_end, - ACTIONS(1509), 56, + STATE(956), 1, + sym_comment, + ACTIONS(1519), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85984,12 +90489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33005] = 3, + [35802] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1657), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1717), 1, ts_builtin_sym_end, - ACTIONS(1571), 56, + STATE(957), 1, + sym_comment, + ACTIONS(1609), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86046,12 +90555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33070] = 3, + [35873] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1627), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1653), 1, ts_builtin_sym_end, - ACTIONS(1575), 56, + STATE(958), 1, + sym_comment, + ACTIONS(1621), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86108,12 +90621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33135] = 3, + [35944] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(959), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86170,12 +90687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33200] = 3, + [36015] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1703), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(960), 1, + sym_comment, + ACTIONS(1585), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86232,12 +90753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33265] = 3, + [36086] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1655), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(961), 1, + sym_comment, + ACTIONS(1619), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86294,12 +90819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33330] = 3, + [36157] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1699), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(962), 1, + sym_comment, + ACTIONS(1545), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86356,12 +90885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33395] = 3, + [36228] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1687), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1657), 1, ts_builtin_sym_end, - ACTIONS(1533), 56, + STATE(963), 1, + sym_comment, + ACTIONS(1617), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86418,12 +90951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33460] = 3, + [36299] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1659), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(964), 1, + sym_comment, + ACTIONS(1613), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86480,12 +91017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33525] = 3, + [36370] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1693), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(965), 1, + sym_comment, + ACTIONS(1549), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86542,12 +91083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33590] = 3, + [36441] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1691), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1735), 1, ts_builtin_sym_end, - ACTIONS(1537), 56, + STATE(966), 1, + sym_comment, + ACTIONS(1635), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86604,12 +91149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33655] = 3, + [36512] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1651), 1, ts_builtin_sym_end, - ACTIONS(1593), 56, + STATE(967), 1, + sym_comment, + ACTIONS(1599), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86666,12 +91215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33720] = 3, + [36583] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1693), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1707), 1, ts_builtin_sym_end, - ACTIONS(1539), 56, + STATE(968), 1, + sym_comment, + ACTIONS(1531), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86728,12 +91281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33785] = 3, + [36654] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1709), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(969), 1, + sym_comment, + ACTIONS(1529), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86790,12 +91347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33850] = 3, + [36725] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(970), 1, + sym_comment, + ACTIONS(1543), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86852,12 +91413,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33915] = 3, + [36796] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(971), 1, + sym_comment, + ACTIONS(1543), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86914,12 +91479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [33980] = 3, + [36867] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1655), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1697), 1, ts_builtin_sym_end, - ACTIONS(1577), 56, + STATE(972), 1, + sym_comment, + ACTIONS(1543), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86976,12 +91545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34045] = 3, + [36938] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1679), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(973), 1, + sym_comment, + ACTIONS(1563), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87038,12 +91611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34110] = 3, + [37009] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1695), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1541), 56, + STATE(974), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87100,12 +91677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34175] = 3, + [37080] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(975), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87162,12 +91743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34240] = 3, + [37151] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1651), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1511), 56, + STATE(976), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87224,12 +91809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34305] = 3, + [37222] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1681), 1, ts_builtin_sym_end, - ACTIONS(1579), 56, + STATE(977), 1, + sym_comment, + ACTIONS(1559), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87286,12 +91875,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34370] = 3, + [37293] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1673), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1683), 1, ts_builtin_sym_end, - ACTIONS(1483), 56, + STATE(978), 1, + sym_comment, + ACTIONS(1557), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87348,12 +91941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34435] = 3, + [37364] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1723), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(979), 1, + sym_comment, + ACTIONS(1611), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87410,12 +92007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34500] = 3, + [37435] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1725), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(980), 1, + sym_comment, + ACTIONS(1615), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87472,12 +92073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34565] = 3, + [37506] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1667), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(981), 1, + sym_comment, + ACTIONS(1601), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87534,12 +92139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34630] = 3, + [37577] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1653), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1727), 1, ts_builtin_sym_end, - ACTIONS(1583), 56, + STATE(982), 1, + sym_comment, + ACTIONS(1633), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87596,136 +92205,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1639), 1, - ts_builtin_sym_end, - ACTIONS(1545), 56, - anon_sym_export, - anon_sym_LBRACE, + [37648] = 13, + 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, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, + ACTIONS(1759), 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(1762), 1, + anon_sym_EQ, + ACTIONS(1764), 1, + anon_sym_EQ_GT, + STATE(983), 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_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_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_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, - [34760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - ts_builtin_sym_end, - ACTIONS(1585), 56, - anon_sym_export, - 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, - 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, + 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_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, - [34825] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [37735] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1685), 1, ts_builtin_sym_end, - ACTIONS(1547), 56, + STATE(984), 1, + sym_comment, + ACTIONS(1555), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87782,12 +92345,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34890] = 3, + [37806] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1711), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(985), 1, + sym_comment, + ACTIONS(1521), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87844,12 +92411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [34955] = 3, + [37877] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1687), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(986), 1, + sym_comment, + ACTIONS(1553), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87906,12 +92477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35020] = 3, + [37948] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1661), 1, ts_builtin_sym_end, - ACTIONS(1467), 56, + STATE(987), 1, + sym_comment, + ACTIONS(1591), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -87968,454 +92543,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35085] = 3, + [38019] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - ts_builtin_sym_end, - ACTIONS(1587), 56, - anon_sym_export, - 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, - 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, - 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, - [35150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - ts_builtin_sym_end, - ACTIONS(1467), 56, - anon_sym_export, - 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, - 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, - 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, - [35215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - ts_builtin_sym_end, - ACTIONS(1589), 56, - anon_sym_export, - 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, - 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, - 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, - [35280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1703), 1, - ts_builtin_sym_end, - ACTIONS(1481), 56, - anon_sym_export, - 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, - 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, - 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, - [35345] = 11, - ACTIONS(1177), 1, - anon_sym_RBRACE, - ACTIONS(1188), 1, - anon_sym_COLON, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1711), 1, - anon_sym_LPAREN, - ACTIONS(1714), 1, - anon_sym_EQ, - ACTIONS(1716), 1, - anon_sym_EQ_GT, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, - aux_sym_object_repeat1, - ACTIONS(1709), 14, - 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_BQUOTE, - ACTIONS(1718), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1707), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [35426] = 3, - ACTIONS(3), 1, - sym_comment, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(1645), 1, ts_builtin_sym_end, - ACTIONS(1591), 56, - anon_sym_export, - 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, - 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, - 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, - [35491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 1, - ts_builtin_sym_end, - ACTIONS(1479), 56, - anon_sym_export, - 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, - 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, - 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, - [35556] = 3, - ACTIONS(3), 1, + STATE(988), 1, sym_comment, - ACTIONS(882), 1, - ts_builtin_sym_end, - ACTIONS(880), 56, + ACTIONS(1627), 56, anon_sym_export, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88472,10 +92609,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [35621] = 3, - ACTIONS(1203), 1, + [38090] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(989), 1, sym_comment, - ACTIONS(1511), 22, + ACTIONS(1768), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -88497,8 +92638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1651), 34, + ACTIONS(1770), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -88532,13 +92672,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35685] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, + [38160] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1211), 1, + sym__ternary_qmark, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1718), 15, + ACTIONS(1394), 1, + 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_LBRACE, + ACTIONS(1776), 1, + 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_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88554,31 +92718,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(1709), 19, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1222), 30, anon_sym_STAR, - anon_sym_in, + 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, @@ -88592,14 +92738,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [35753] = 3, - ACTIONS(1203), 1, + anon_sym_BQUOTE, + [38250] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(991), 1, sym_comment, - ACTIONS(1722), 22, + ACTIONS(1779), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -88621,8 +92778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1724), 34, + ACTIONS(1781), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -88656,11 +92812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35817] = 3, - ACTIONS(1203), 1, + [38320] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(992), 1, sym_comment, - ACTIONS(1726), 22, + ACTIONS(1783), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -88682,8 +92843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1728), 34, + ACTIONS(1785), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -88717,11 +92877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35881] = 3, - ACTIONS(1203), 1, + [38390] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(993), 1, sym_comment, - ACTIONS(1730), 22, + ACTIONS(1787), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -88743,8 +92908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1732), 34, + ACTIONS(1789), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -88778,11 +92942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35945] = 3, - ACTIONS(1203), 1, + [38460] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(994), 1, sym_comment, - ACTIONS(1734), 22, + ACTIONS(1791), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -88804,8 +92973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1736), 34, + ACTIONS(1793), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -88839,14 +93007,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36009] = 3, - ACTIONS(1203), 1, + [38530] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, + anon_sym_EQ, + STATE(995), 1, sym_comment, - ACTIONS(1738), 22, + 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_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -88865,8 +93055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1740), 34, + ACTIONS(1757), 20, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -88879,32 +93068,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36073] = 3, - ACTIONS(1203), 1, + [38604] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(996), 1, sym_comment, - ACTIONS(1742), 22, + ACTIONS(1797), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -88926,8 +93105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1744), 34, + ACTIONS(1799), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -88961,15 +93139,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36137] = 6, - ACTIONS(1203), 1, + [38674] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(997), 1, sym_comment, - ACTIONS(1344), 1, + ACTIONS(1579), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_EQ, - ACTIONS(1746), 1, - anon_sym_EQ_GT, - ACTIONS(1201), 15, + 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(1751), 35, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88985,54 +93198,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1175), 17, - 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_BQUOTE, - ACTIONS(1186), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [36206] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1338), 1, + anon_sym_BQUOTE, + [38744] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1746), 1, + ACTIONS(1801), 1, anon_sym_EQ_GT, - ACTIONS(1201), 15, + STATE(998), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89048,7 +93233,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(1175), 17, + ACTIONS(1211), 18, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -89065,8 +93250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -89087,11 +93273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [36275] = 2, + [38819] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(999), 1, sym_comment, - ACTIONS(1748), 55, + ACTIONS(1803), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -89147,73 +93336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36336] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1750), 1, - anon_sym_EQ, - ACTIONS(1752), 1, - anon_sym_EQ_GT, - ACTIONS(1718), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1709), 17, - 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_BQUOTE, - ACTIONS(1707), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [36405] = 2, + [38886] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1000), 1, sym_comment, - ACTIONS(1748), 55, + ACTIONS(1805), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -89269,10 +93399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36466] = 2, + [38953] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1001), 1, sym_comment, - ACTIONS(1748), 55, + ACTIONS(1807), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -89328,10 +93462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36527] = 2, + [39020] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1002), 1, sym_comment, - ACTIONS(1754), 55, + ACTIONS(1809), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -89387,10 +93525,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36588] = 2, + [39087] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1003), 1, sym_comment, - ACTIONS(1756), 55, + ACTIONS(1809), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -89446,10 +93588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36649] = 2, + [39154] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1004), 1, sym_comment, - ACTIONS(1758), 55, + ACTIONS(1809), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -89505,10 +93651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36710] = 2, + [39221] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1005), 1, sym_comment, - ACTIONS(1748), 55, + ACTIONS(1809), 55, anon_sym_export, anon_sym_LBRACE, anon_sym_import, @@ -89564,14 +93714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [36771] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, + [39288] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1752), 1, + ACTIONS(1813), 1, anon_sym_EQ_GT, - ACTIONS(1718), 15, + STATE(1006), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89587,7 +93741,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(1709), 17, + ACTIONS(1757), 18, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -89604,8 +93758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -89626,35 +93781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [36840] = 8, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1716), 1, - anon_sym_EQ_GT, - ACTIONS(1760), 1, - anon_sym_in, - ACTIONS(1763), 1, - anon_sym_of, - ACTIONS(1765), 1, + [39363] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, anon_sym_EQ, - ACTIONS(1709), 15, - 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_BQUOTE, - ACTIONS(1718), 15, + 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, @@ -89670,8 +93808,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1707), 20, + 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, @@ -89690,15 +93848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [36912] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1369), 1, + [39438] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1368), 1, anon_sym_EQ, - ACTIONS(1767), 1, + ACTIONS(1801), 1, anon_sym_EQ_GT, - ACTIONS(1201), 15, + STATE(1008), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89714,14 +93875,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(1175), 16, - sym__automatic_semicolon, + ACTIONS(1211), 18, 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_LT_EQ, @@ -89730,8 +93892,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -89752,76 +93915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [36980] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1219), 1, + [39513] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1324), 1, anon_sym_COLON, - ACTIONS(1716), 1, + ACTIONS(1764), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1709), 15, - 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_BQUOTE, - ACTIONS(1718), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1707), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37050] = 5, - ACTIONS(1203), 1, + STATE(1009), 1, sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89837,13 +93944,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(1709), 17, + ACTIONS(1757), 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, @@ -89854,8 +93959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -89876,33 +93982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37116] = 7, - ACTIONS(1199), 1, + [39589] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, + anon_sym_EQ, + ACTIONS(1817), 1, anon_sym_EQ_GT, - ACTIONS(1203), 1, + STATE(1010), 1, sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1271), 1, - anon_sym_COLON, - ACTIONS(1175), 15, - 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_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89918,7 +94009,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(1186), 21, + 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, @@ -89939,33 +94048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37186] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1271), 1, - anon_sym_COLON, - ACTIONS(1716), 1, + [39663] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1764), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1709), 15, - 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_BQUOTE, - ACTIONS(1718), 15, + STATE(1011), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -89981,7 +94075,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(1707), 21, + 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, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90002,33 +94114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37256] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1409), 1, - anon_sym_EQ, - ACTIONS(1771), 1, + [39737] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1235), 1, anon_sym_EQ_GT, - ACTIONS(1769), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1175), 12, - 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_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1257), 1, + anon_sym_EQ, + STATE(1012), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90044,7 +94141,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(1186), 21, + 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, anon_sym_LT, @@ -90065,11 +94180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37326] = 3, - ACTIONS(1203), 1, + [39811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1013), 1, sym_comment, - ACTIONS(1726), 22, + ACTIONS(1797), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -90091,8 +94209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1728), 32, + ACTIONS(1799), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -90124,33 +94241,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [37388] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1775), 1, - anon_sym_EQ, - ACTIONS(1778), 1, + [39879] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1764), 1, anon_sym_EQ_GT, - ACTIONS(1773), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1709), 12, - 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_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1795), 1, + anon_sym_EQ, + STATE(1014), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90166,41 +94270,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(1707), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37458] = 7, - ACTIONS(1199), 1, - anon_sym_EQ_GT, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1219), 1, - anon_sym_COLON, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1175), 15, + ACTIONS(1757), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -90212,24 +94286,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1186), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90250,44 +94309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37528] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1742), 22, - anon_sym_STAR, - anon_sym_in, + [39953] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 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, - anon_sym_DASH_DASH, - ACTIONS(1744), 32, - 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, + STATE(1015), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90303,21 +94334,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1757), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [37590] = 6, - ACTIONS(1199), 1, + 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, + [40025] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1235), 1, anon_sym_EQ_GT, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1344), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1201), 15, + ACTIONS(1324), 1, + anon_sym_COLON, + STATE(1016), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90333,11 +94403,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(1175), 16, + ACTIONS(1211), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -90349,8 +94418,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90371,15 +94441,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37658] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1780), 1, + [40101] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1235), 1, anon_sym_EQ_GT, - ACTIONS(1718), 15, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1257), 1, + anon_sym_EQ, + ACTIONS(1394), 1, + anon_sym_in, + ACTIONS(1819), 1, + anon_sym_of, + STATE(1017), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90395,12 +94472,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(1709), 16, + 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, @@ -90411,10 +94487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1222), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -90433,22 +94509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37726] = 7, - ACTIONS(1199), 1, + [40179] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1813), 1, anon_sym_EQ_GT, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1221), 1, + ACTIONS(1824), 1, anon_sym_EQ, - ACTIONS(1239), 1, - anon_sym_COLON, - ACTIONS(1175), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(1018), 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_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -90458,8 +94537,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90475,7 +94555,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(1186), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90496,20 +94576,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37796] = 7, - ACTIONS(1203), 1, + [40255] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1764), 1, + anon_sym_EQ_GT, + ACTIONS(1815), 1, + anon_sym_EQ, + ACTIONS(1827), 1, + anon_sym_in, + ACTIONS(1830), 1, + anon_sym_of, + STATE(1019), 1, sym_comment, - ACTIONS(1398), 1, + 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, + 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(1755), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [40333] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1402), 1, anon_sym_EQ, - ACTIONS(1746), 1, + ACTIONS(1801), 1, anon_sym_EQ_GT, - ACTIONS(1782), 4, + STATE(1020), 1, + sym_comment, + ACTIONS(1832), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1175), 12, + ACTIONS(1211), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90521,8 +94672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90538,7 +94690,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(1186), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90559,11 +94711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37866] = 3, - ACTIONS(1203), 1, + [40409] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1021), 1, sym_comment, - ACTIONS(1738), 22, + ACTIONS(1579), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -90585,8 +94740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1740), 32, + ACTIONS(1751), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -90618,22 +94772,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [37928] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1752), 1, + [40477] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1235), 1, anon_sym_EQ_GT, - ACTIONS(1788), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1785), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1709), 12, + ACTIONS(1342), 1, + anon_sym_COLON, + STATE(1022), 1, + sym_comment, + 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(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, @@ -90643,8 +94818,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + 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, + [40553] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1265), 1, + anon_sym_COLON, + ACTIONS(1764), 1, + anon_sym_EQ_GT, + ACTIONS(1815), 1, + anon_sym_EQ, + STATE(1023), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90660,7 +94870,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(1707), 21, + ACTIONS(1757), 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(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90681,15 +94908,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [37998] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1716), 1, + [40629] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1342), 1, + anon_sym_COLON, + ACTIONS(1764), 1, anon_sym_EQ_GT, - ACTIONS(1720), 1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1718), 15, + STATE(1024), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90705,11 +94937,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(1709), 16, + ACTIONS(1757), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -90721,8 +94952,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90743,11 +94975,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + [40705] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, + anon_sym_EQ, + ACTIONS(1837), 1, + anon_sym_EQ_GT, + STATE(1025), 1, + sym_comment, + ACTIONS(1835), 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, - [38066] = 3, - ACTIONS(1203), 1, + 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, + [40781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1026), 1, sym_comment, - ACTIONS(1722), 22, + ACTIONS(1791), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -90769,8 +95071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1724), 32, + ACTIONS(1793), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -90802,15 +95103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38128] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1716), 1, + [40849] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1235), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1718), 15, + STATE(1027), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90826,7 +95132,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(1709), 16, + ACTIONS(1211), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -90842,8 +95148,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90864,20 +95171,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38196] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1778), 1, + [40923] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1837), 1, anon_sym_EQ_GT, - ACTIONS(1791), 4, + ACTIONS(1841), 1, + anon_sym_EQ, + STATE(1028), 1, + sym_comment, + ACTIONS(1839), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1709), 12, + ACTIONS(1757), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90889,8 +95199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90906,7 +95217,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(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90927,20 +95238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38266] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1344), 1, + [40999] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1417), 1, anon_sym_EQ, - ACTIONS(1771), 1, + ACTIONS(1846), 1, anon_sym_EQ_GT, - ACTIONS(1793), 4, + STATE(1029), 1, + sym_comment, + ACTIONS(1844), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1175), 12, + ACTIONS(1211), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -90952,8 +95266,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90969,7 +95284,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(1186), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -90990,33 +95305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38336] = 7, - ACTIONS(1199), 1, + [41075] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1235), 1, anon_sym_EQ_GT, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1221), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1229), 1, + ACTIONS(1265), 1, anon_sym_COLON, - ACTIONS(1175), 15, - 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_BQUOTE, - ACTIONS(1201), 15, + STATE(1030), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91032,7 +95334,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(1186), 21, + 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, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91053,13 +95372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38406] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1750), 1, + [41151] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1718), 15, + STATE(1031), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91075,7 +95397,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(1709), 17, + ACTIONS(1757), 18, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -91092,8 +95414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91114,50 +95437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38472] = 6, - ACTIONS(1203), 1, + [41223] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1032), 1, sym_comment, - ACTIONS(1344), 1, - anon_sym_EQ, - ACTIONS(1767), 1, - anon_sym_EQ_GT, - ACTIONS(1201), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1175), 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, - 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_BQUOTE, - ACTIONS(1186), 21, + ACTIONS(1768), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -91176,15 +95466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38540] = 6, - ACTIONS(1199), 1, - anon_sym_EQ_GT, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1201), 15, + 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, @@ -91200,53 +95492,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1175), 16, - 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_BQUOTE, - ACTIONS(1186), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [38608] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1780), 1, - anon_sym_EQ_GT, - ACTIONS(1795), 1, + anon_sym_BQUOTE, + [41291] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1718), 15, + ACTIONS(1848), 1, + anon_sym_EQ_GT, + STATE(1033), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91262,7 +95527,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(1709), 16, + ACTIONS(1211), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -91278,8 +95543,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91300,11 +95566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38676] = 3, - ACTIONS(1203), 1, + [41365] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1034), 1, sym_comment, - ACTIONS(1734), 22, + ACTIONS(1783), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -91326,8 +95595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1736), 32, + ACTIONS(1785), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -91359,14 +95627,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38738] = 3, - ACTIONS(1203), 1, + [41433] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1374), 1, + anon_sym_EQ, + ACTIONS(1846), 1, + anon_sym_EQ_GT, + STATE(1035), 1, sym_comment, - ACTIONS(1511), 22, + 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, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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, @@ -91385,18 +95696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1651), 32, - 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, + [41509] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1432), 1, + anon_sym_EQ, + ACTIONS(1848), 1, + anon_sym_EQ_GT, + STATE(1036), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91412,17 +95723,53 @@ 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_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, - [38800] = 3, - ACTIONS(1203), 1, + 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, + [41583] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1037), 1, sym_comment, - ACTIONS(1730), 22, + ACTIONS(1787), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -91444,8 +95791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - ACTIONS(1732), 32, + ACTIONS(1789), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -91477,33 +95823,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38862] = 7, - ACTIONS(1203), 1, - sym_comment, + [41651] = 9, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1255), 1, anon_sym_COLON, - ACTIONS(1716), 1, + ACTIONS(1764), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1709), 15, - 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_BQUOTE, - ACTIONS(1718), 15, + STATE(1038), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91519,7 +95854,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(1707), 21, + ACTIONS(1757), 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(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91540,33 +95892,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [38932] = 7, - ACTIONS(1199), 1, - anon_sym_EQ_GT, - ACTIONS(1203), 1, + [41727] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1039), 1, sym_comment, - ACTIONS(1221), 1, + ACTIONS(1779), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_COLON, - ACTIONS(1175), 15, + 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(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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, - ACTIONS(1201), 15, + [41795] = 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, + STATE(1040), 1, + sym_comment, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91582,7 +95984,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(1186), 21, + 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, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91603,33 +96022,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39002] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1229), 1, + [41871] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1275), 1, anon_sym_COLON, - ACTIONS(1716), 1, + ACTIONS(1764), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1709), 15, - 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_BQUOTE, - ACTIONS(1718), 15, + STATE(1041), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91645,7 +96051,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(1707), 21, + ACTIONS(1757), 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(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91666,17 +96089,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39072] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1255), 1, - anon_sym_COLON, - ACTIONS(1716), 1, + [41947] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1235), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1257), 1, anon_sym_EQ, - ACTIONS(1709), 15, + ACTIONS(1275), 1, + anon_sym_COLON, + STATE(1042), 1, + sym_comment, + 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(1211), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -91691,8 +96133,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + 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, + [42023] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1817), 1, + anon_sym_EQ_GT, + ACTIONS(1852), 1, + anon_sym_EQ, + STATE(1043), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91708,7 +96183,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(1707), 21, + 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, @@ -91729,24 +96222,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39142] = 8, - ACTIONS(1199), 1, + [42097] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1811), 1, + anon_sym_EQ, + ACTIONS(1813), 1, anon_sym_EQ_GT, - ACTIONS(1203), 1, + STATE(1044), 1, sym_comment, - ACTIONS(1221), 1, - anon_sym_EQ, - ACTIONS(1350), 1, - anon_sym_in, - ACTIONS(1797), 1, - anon_sym_of, - ACTIONS(1175), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1854), 3, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1757), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -91756,8 +96249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91773,8 +96267,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(1186), 20, + ACTIONS(1755), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -91793,19 +96288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39214] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1750), 1, + [42172] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1368), 1, anon_sym_EQ, - ACTIONS(1752), 1, + ACTIONS(1801), 1, anon_sym_EQ_GT, - ACTIONS(1799), 3, + STATE(1045), 1, + sym_comment, + ACTIONS(1857), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(1709), 12, + ACTIONS(1211), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91817,8 +96315,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91834,7 +96333,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(1707), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91855,18 +96354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39283] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1775), 1, + [42247] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1841), 1, anon_sym_EQ, - ACTIONS(1773), 4, + STATE(1046), 1, + sym_comment, + ACTIONS(1839), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1709), 12, + ACTIONS(1757), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -91878,8 +96380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91895,7 +96398,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(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91916,13 +96419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39350] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1765), 1, + [42320] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1852), 1, anon_sym_EQ, - ACTIONS(1718), 15, + STATE(1047), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91938,12 +96444,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(1709), 16, + ACTIONS(1757), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -91954,8 +96460,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -91976,32 +96483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39415] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1338), 1, + [42391] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1746), 1, - anon_sym_EQ_GT, - ACTIONS(1802), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1175), 12, - 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_BQUOTE, - ACTIONS(1201), 15, + STATE(1048), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92017,41 +96508,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(1186), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39484] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1760), 1, - anon_sym_in, - ACTIONS(1763), 1, - anon_sym_of, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1709), 15, + ACTIONS(1757), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -92063,84 +96524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - ACTIONS(1718), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1707), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - [39553] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1788), 1, - anon_sym_EQ, - ACTIONS(1785), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1709), 12, - 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_BQUOTE, - ACTIONS(1718), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92161,18 +96547,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39620] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, + [42462] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, anon_sym_EQ, - ACTIONS(1791), 4, + STATE(1049), 1, + sym_comment, + ACTIONS(1835), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1709), 12, + ACTIONS(1757), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92184,8 +96573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92201,7 +96591,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(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92222,13 +96612,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39687] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1795), 1, + [42535] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1815), 1, anon_sym_EQ, - ACTIONS(1718), 15, + ACTIONS(1827), 1, + anon_sym_in, + ACTIONS(1830), 1, + anon_sym_of, + STATE(1050), 1, + sym_comment, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92244,12 +96641,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(1709), 16, + ACTIONS(1757), 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, @@ -92260,10 +96656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1707), 21, + ACTIONS(1755), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -92282,19 +96678,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39752] = 8, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1398), 1, + [42610] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1824), 1, anon_sym_EQ, - ACTIONS(1746), 1, - anon_sym_EQ_GT, - ACTIONS(1769), 1, + STATE(1051), 1, + sym_comment, + ACTIONS(1821), 4, anon_sym_COMMA, - ACTIONS(1782), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1175), 12, + ACTIONS(1757), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92306,8 +96704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92323,7 +96722,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(1186), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92344,19 +96743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39822] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1778), 1, + [42683] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1813), 1, anon_sym_EQ_GT, - ACTIONS(1709), 14, + ACTIONS(1821), 1, + anon_sym_RBRACK, + ACTIONS(1824), 1, + anon_sym_EQ, + ACTIONS(1839), 1, + anon_sym_COMMA, + STATE(1052), 1, + sym_comment, + ACTIONS(1757), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92366,8 +96770,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92383,7 +96788,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(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92404,21 +96809,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39888] = 8, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1752), 1, - anon_sym_EQ_GT, - ACTIONS(1773), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - anon_sym_RBRACK, - ACTIONS(1788), 1, + [42759] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, anon_sym_EQ, - ACTIONS(1709), 12, + ACTIONS(1837), 1, + anon_sym_EQ_GT, + STATE(1053), 1, + sym_comment, + ACTIONS(1757), 15, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92428,8 +96834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92445,7 +96852,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(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92466,19 +96873,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [39958] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1344), 1, + [42831] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1402), 1, anon_sym_EQ, - ACTIONS(1771), 1, + ACTIONS(1801), 1, anon_sym_EQ_GT, - ACTIONS(1175), 14, + ACTIONS(1832), 1, + anon_sym_RBRACK, + ACTIONS(1844), 1, + anon_sym_COMMA, + STATE(1054), 1, + sym_comment, + ACTIONS(1211), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92488,8 +96900,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92505,7 +96918,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(1186), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92526,19 +96939,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40024] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1750), 1, + [42907] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1799), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1709), 12, + ACTIONS(1846), 1, + anon_sym_EQ_GT, + STATE(1055), 1, + sym_comment, + ACTIONS(1211), 15, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92548,8 +96964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92565,7 +96982,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(1707), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92586,19 +97003,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40090] = 8, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1344), 1, + [42979] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1350), 1, - anon_sym_in, - ACTIONS(1771), 1, - anon_sym_EQ_GT, - ACTIONS(1797), 1, - anon_sym_of, - ACTIONS(1175), 12, + STATE(1056), 1, + sym_comment, + ACTIONS(1854), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1757), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -92610,8 +97028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92627,8 +97046,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(1186), 20, + ACTIONS(1755), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -92647,19 +97067,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40159] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1773), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - anon_sym_RBRACK, - ACTIONS(1788), 1, + [43051] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1709), 12, + ACTIONS(1860), 1, + anon_sym_EQ_GT, + STATE(1057), 1, + sym_comment, + ACTIONS(1211), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92669,8 +97091,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92686,7 +97109,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(1707), 21, + ACTIONS(1222), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92707,18 +97130,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40226] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1805), 1, + [43122] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1374), 1, anon_sym_EQ, - ACTIONS(1807), 1, + ACTIONS(1394), 1, + anon_sym_in, + ACTIONS(1819), 1, + anon_sym_of, + ACTIONS(1846), 1, anon_sym_EQ_GT, - ACTIONS(1709), 13, + STATE(1058), 1, + sym_comment, + ACTIONS(1211), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92728,8 +97157,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92745,9 +97175,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(1707), 21, + ACTIONS(1222), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -92766,18 +97195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40291] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1531), 1, + [43197] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, anon_sym_EQ, - ACTIONS(1809), 1, + ACTIONS(1827), 1, + anon_sym_in, + ACTIONS(1830), 1, + anon_sym_of, + ACTIONS(1837), 1, anon_sym_EQ_GT, - ACTIONS(1175), 13, + STATE(1059), 1, + sym_comment, + ACTIONS(1757), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92787,8 +97222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92804,9 +97240,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(1186), 21, + ACTIONS(1755), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -92825,15 +97260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40356] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1344), 1, + [43272] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, anon_sym_EQ, - ACTIONS(1809), 1, + ACTIONS(1862), 1, anon_sym_EQ_GT, - ACTIONS(1175), 13, + STATE(1060), 1, + sym_comment, + ACTIONS(1757), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -92846,8 +97284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92863,7 +97302,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(1186), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92884,15 +97323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40421] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1807), 1, + [43343] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1862), 1, anon_sym_EQ_GT, - ACTIONS(1709), 13, + ACTIONS(1864), 1, + anon_sym_EQ, + STATE(1061), 1, + sym_comment, + ACTIONS(1757), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -92905,8 +97347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92922,7 +97365,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(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -92943,21 +97386,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40486] = 8, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, + [43414] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1493), 1, anon_sym_EQ, - ACTIONS(1760), 1, - anon_sym_in, - ACTIONS(1763), 1, - anon_sym_of, - ACTIONS(1778), 1, + ACTIONS(1860), 1, anon_sym_EQ_GT, - ACTIONS(1709), 12, + STATE(1062), 1, + sym_comment, + ACTIONS(1211), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -92967,8 +97410,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1237), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92984,8 +97428,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(1707), 20, + ACTIONS(1222), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -93004,16 +97449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40555] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1805), 1, + [43485] = 9, + 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(1709), 13, + ACTIONS(1839), 1, + anon_sym_COMMA, + STATE(1063), 1, + sym_comment, + ACTIONS(1757), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -93023,8 +97474,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93040,7 +97492,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(1707), 21, + ACTIONS(1755), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93061,19 +97513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40617] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, + [43558] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1864), 1, anon_sym_EQ, - ACTIONS(1760), 1, - anon_sym_in, - ACTIONS(1763), 1, - anon_sym_of, - ACTIONS(1709), 12, + STATE(1064), 1, + sym_comment, + ACTIONS(1757), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -93083,8 +97535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1718), 15, + ACTIONS(1766), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93100,60 +97553,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(1707), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - [40683] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - sym_identifier, - ACTIONS(1813), 1, + ACTIONS(1755), 20, anon_sym_STAR, - ACTIONS(1815), 1, - anon_sym_LBRACE, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - STATE(2524), 1, - sym_string, - STATE(2526), 1, - sym_import_clause, - ACTIONS(1823), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(2676), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(1817), 33, - anon_sym_COMMA, - anon_sym_LPAREN, 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, @@ -93167,164 +97571,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40751] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - sym_identifier, - ACTIONS(1813), 1, - anon_sym_STAR, - ACTIONS(1815), 1, - anon_sym_LBRACE, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - STATE(2293), 1, - sym_string, - STATE(2552), 1, - sym_import_clause, - ACTIONS(1823), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(2676), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(1817), 33, - anon_sym_COMMA, - anon_sym_LPAREN, + [43626] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, + anon_sym_EQ, + ACTIONS(1827), 1, 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, - [40819] = 11, - ACTIONS(3), 1, + ACTIONS(1830), 1, + anon_sym_of, + STATE(1065), 1, sym_comment, - ACTIONS(1811), 1, - sym_identifier, - ACTIONS(1813), 1, - anon_sym_STAR, - ACTIONS(1815), 1, - anon_sym_LBRACE, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - STATE(2171), 1, - sym_string, - STATE(2626), 1, - sym_import_clause, - ACTIONS(1823), 2, - sym__automatic_semicolon, + ACTIONS(1757), 13, sym__ternary_qmark, - STATE(2676), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(1817), 33, - anon_sym_COMMA, anon_sym_LPAREN, - 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, - [40887] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - sym_identifier, - ACTIONS(1813), 1, + 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), 19, anon_sym_STAR, - ACTIONS(1815), 1, - anon_sym_LBRACE, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - STATE(2398), 1, - sym_string, - STATE(2474), 1, - sym_import_clause, - ACTIONS(1823), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(2676), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(1817), 33, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, @@ -93338,95 +97634,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40955] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 1, - sym_identifier, - ACTIONS(1813), 1, - anon_sym_STAR, - ACTIONS(1815), 1, - anon_sym_LBRACE, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - STATE(2287), 1, - sym_string, - STATE(2628), 1, - sym_import_clause, - ACTIONS(1823), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(2676), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(1817), 33, - anon_sym_COMMA, + [43698] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, + ACTIONS(1872), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1874), 1, anon_sym_DOT, + ACTIONS(1876), 1, 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, + ACTIONS(1880), 1, anon_sym_BQUOTE, - [41023] = 11, - ACTIONS(1203), 1, + STATE(1066), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1825), 12, + ACTIONS(1866), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93439,7 +97673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1827), 21, + ACTIONS(1868), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -93461,78 +97695,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41089] = 11, - ACTIONS(1203), 1, + [43768] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1067), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1599), 42, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_import, + anon_sym_let, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1843), 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_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(1845), 21, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [41155] = 9, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - STATE(1131), 2, + STATE(1068), 1, + sym_comment, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1847), 13, + ACTIONS(1882), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93545,8 +97778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1849), 22, + ACTIONS(1884), 23, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -93569,63 +97801,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - [41217] = 5, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1851), 1, - sym__automatic_semicolon, - ACTIONS(820), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(840), 27, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [43890] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1872), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1874), 1, anon_sym_DOT, + ACTIONS(1876), 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, + ACTIONS(1880), 1, anon_sym_BQUOTE, - [41271] = 5, - ACTIONS(1203), 1, + STATE(1069), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - STATE(1140), 1, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1142), 2, + sym_template_string, sym_arguments, - ACTIONS(1853), 13, + ACTIONS(1886), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93638,8 +97838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1855), 26, + ACTIONS(1888), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -93647,10 +97846,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, @@ -93664,15 +97860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [41324] = 2, + [43960] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1070), 1, sym_comment, - ACTIONS(1557), 41, + ACTIONS(1591), 42, anon_sym_export, anon_sym_LBRACE, anon_sym_import, + anon_sym_let, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_await, @@ -93711,12 +97910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41371] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, + [44014] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, anon_sym_EQ, - ACTIONS(1707), 13, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1890), 1, + sym__automatic_semicolon, + STATE(1071), 1, + sym_comment, + ACTIONS(864), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93729,8 +97934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 27, + ACTIONS(932), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -93757,18 +97961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41422] = 5, - ACTIONS(824), 1, + [44074] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1899), 1, anon_sym_EQ, - ACTIONS(1203), 1, + STATE(1072), 1, sym_comment, - ACTIONS(1857), 4, + ACTIONS(1896), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(822), 13, + ACTIONS(1892), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93781,8 +97990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 23, + ACTIONS(1894), 24, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -93805,18 +98013,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41475] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1867), 1, + [44133] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, anon_sym_EQ, - ACTIONS(1864), 4, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1073), 1, + sym_comment, + ACTIONS(1901), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1860), 13, + ACTIONS(866), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93829,8 +98042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1862), 23, + ACTIONS(872), 24, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -93853,21 +98065,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41528] = 8, - ACTIONS(1203), 1, + [44192] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1074), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1587), 41, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_import, + anon_sym_let, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1869), 1, - sym_optional_chain, - STATE(1140), 1, - sym_arguments, - ACTIONS(1853), 13, + 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, + [44245] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, + anon_sym_EQ, + STATE(1075), 1, + sym_comment, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93880,16 +98138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1855), 23, + ACTIONS(1757), 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, @@ -93904,13 +98165,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41587] = 4, - ACTIONS(1203), 1, + [44302] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1076), 1, sym_comment, - ACTIONS(1851), 1, - sym__automatic_semicolon, - ACTIONS(820), 13, + ACTIONS(1589), 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, + 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, + [44355] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, + anon_sym_LPAREN, + STATE(1077), 1, + sym_comment, + STATE(1090), 1, + sym_arguments, + ACTIONS(1904), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93923,13 +98240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(840), 27, + ACTIONS(1906), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -93951,13 +98266,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41638] = 4, - ACTIONS(1203), 1, + [44414] = 10, + 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(1908), 1, + sym_optional_chain, + STATE(1078), 1, sym_comment, - ACTIONS(1871), 1, - sym__automatic_semicolon, - ACTIONS(880), 13, + STATE(1090), 1, + sym_arguments, + ACTIONS(1904), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -93970,20 +98298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(882), 27, + ACTIONS(1906), 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -93998,18 +98321,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41689] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1880), 1, + [44479] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1917), 1, anon_sym_EQ, - ACTIONS(1877), 4, + STATE(1079), 1, + sym_comment, + ACTIONS(1914), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1873), 13, + ACTIONS(1910), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94022,8 +98350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1875), 23, + ACTIONS(1912), 24, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -94046,16 +98373,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41742] = 2, + [44538] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1080), 1, sym_comment, - ACTIONS(1529), 41, + ACTIONS(1583), 41, 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, @@ -94092,10 +98424,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41789] = 3, - ACTIONS(1203), 1, + [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, + 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, + [44644] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1919), 1, + sym__automatic_semicolon, + STATE(1082), 1, sym_comment, - ACTIONS(1882), 13, + ACTIONS(874), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94108,8 +98495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1884), 27, + ACTIONS(876), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94136,149 +98522,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [41837] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + [44701] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1890), 1, + sym__automatic_semicolon, + STATE(1083), 1, + sym_comment, + ACTIONS(864), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1888), 5, + ACTIONS(932), 28, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [41933] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1922), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [42029] = 3, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [44758] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1084), 1, sym_comment, - ACTIONS(880), 13, + ACTIONS(1921), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94291,18 +98595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(882), 27, - sym__automatic_semicolon, + ACTIONS(1923), 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, @@ -94319,11 +98622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42077] = 3, - ACTIONS(1203), 1, + [44812] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1085), 1, sym_comment, - ACTIONS(1924), 13, + ACTIONS(961), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94336,8 +98644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1926), 27, + ACTIONS(965), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94364,11 +98671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42125] = 3, - ACTIONS(1203), 1, + [44866] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1086), 1, sym_comment, - ACTIONS(884), 13, + ACTIONS(1925), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94381,18 +98693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(886), 27, - sym__automatic_semicolon, + ACTIONS(1927), 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, @@ -94409,11 +98720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42173] = 3, - ACTIONS(1203), 1, + [44920] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1087), 1, sym_comment, - ACTIONS(1928), 13, + ACTIONS(1929), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94426,8 +98742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1930), 27, + ACTIONS(1931), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94454,11 +98769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42221] = 3, - ACTIONS(1203), 1, + [44974] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1088), 1, sym_comment, - ACTIONS(854), 13, + ACTIONS(1933), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94471,8 +98791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(858), 27, + ACTIONS(1935), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94499,11 +98818,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [45028] = 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, - [42269] = 3, - ACTIONS(1203), 1, + 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(1089), 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(1939), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [45128] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1090), 1, sym_comment, - ACTIONS(1932), 13, + ACTIONS(1973), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94516,8 +98912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1934), 27, + ACTIONS(1975), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94544,11 +98939,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [45182] = 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, - [42317] = 3, - ACTIONS(1203), 1, + 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(1091), 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(1923), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [45282] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1092), 1, sym_comment, - ACTIONS(1936), 13, + ACTIONS(1977), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94561,8 +99033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1938), 27, + ACTIONS(1979), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94589,11 +99060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42365] = 3, - ACTIONS(1203), 1, + [45336] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1093), 1, sym_comment, - ACTIONS(862), 13, + ACTIONS(1981), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94606,8 +99082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(866), 27, + ACTIONS(1983), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94634,11 +99109,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42413] = 3, - ACTIONS(1203), 1, + [45390] = 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(1094), 1, sym_comment, - ACTIONS(1940), 13, + 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(1985), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [45490] = 6, + 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, @@ -94651,18 +99205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1942), 27, + ACTIONS(932), 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, @@ -94679,11 +99231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42461] = 3, - ACTIONS(1203), 1, + [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(870), 13, + ACTIONS(874), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94696,18 +99255,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(874), 27, + ACTIONS(876), 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, @@ -94724,11 +99281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42509] = 3, - ACTIONS(1203), 1, + [45602] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1097), 1, sym_comment, - ACTIONS(890), 13, + ACTIONS(874), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94741,8 +99303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(894), 27, + ACTIONS(876), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94769,11 +99330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42557] = 3, - ACTIONS(1203), 1, + [45656] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1098), 1, sym_comment, - ACTIONS(1817), 13, + ACTIONS(874), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94786,18 +99352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1823), 27, + ACTIONS(876), 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, @@ -94814,11 +99379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42605] = 3, - ACTIONS(1203), 1, + [45710] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1099), 1, sym_comment, - ACTIONS(1944), 13, + ACTIONS(914), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94831,8 +99401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1946), 27, + ACTIONS(918), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94859,11 +99428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42653] = 3, - ACTIONS(1203), 1, + [45764] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1100), 1, sym_comment, - ACTIONS(898), 13, + ACTIONS(906), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94876,8 +99450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(902), 27, + ACTIONS(910), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94904,11 +99477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42701] = 3, - ACTIONS(1203), 1, + [45818] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1101), 1, sym_comment, - ACTIONS(908), 13, + ACTIONS(1991), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94921,8 +99499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(912), 27, + ACTIONS(1993), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94949,11 +99526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42749] = 3, - ACTIONS(1203), 1, + [45872] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1102), 1, sym_comment, - ACTIONS(916), 13, + ACTIONS(898), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -94966,8 +99548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(920), 27, + ACTIONS(902), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -94994,30 +99575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [42797] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 12, + [45926] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1103), 1, + sym_comment, + ACTIONS(939), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95030,53 +99597,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 18, + ACTIONS(941), 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, - [42863] = 14, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1886), 2, + [45980] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1104), 1, + sym_comment, + ACTIONS(1995), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -95085,159 +99643,95 @@ 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(1950), 17, + ACTIONS(1997), 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, - [42933] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1896), 1, + [46034] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1105), 1, + sym_comment, + ACTIONS(928), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1948), 1, anon_sym_PIPE, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 9, + ACTIONS(930), 28, + sym__automatic_semicolon, 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, - [43021] = 22, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 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(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 10, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [43107] = 3, - ACTIONS(1203), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46088] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1106), 1, sym_comment, - ACTIONS(924), 13, + ACTIONS(993), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95250,8 +99744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(928), 27, + ACTIONS(997), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -95278,17 +99771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43155] = 6, - ACTIONS(1203), 1, + [46142] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1107), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1869), 1, - sym_optional_chain, - ACTIONS(1952), 13, + ACTIONS(977), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95301,8 +99793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1954), 24, + ACTIONS(981), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -95311,7 +99802,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, @@ -95326,28 +99820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [43209] = 11, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, anon_sym_BQUOTE, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(1825), 12, + [46196] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1108), 1, + sym_comment, + ACTIONS(969), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95360,13 +99842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1827), 19, - sym__automatic_semicolon, + ACTIONS(973), 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, @@ -95380,10 +99868,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43273] = 3, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46250] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1109), 1, sym_comment, - ACTIONS(1952), 13, + ACTIONS(922), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95396,8 +99891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1954), 27, + ACTIONS(926), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -95424,74 +99918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [43321] = 21, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1948), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 10, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [43405] = 3, - ACTIONS(1203), 1, + [46304] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1110), 1, sym_comment, - ACTIONS(1707), 13, + ACTIONS(939), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95504,18 +99940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 27, + ACTIONS(941), 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, @@ -95532,205 +99967,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43453] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [46358] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + STATE(1111), 1, + sym_comment, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(1882), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1884), 21, + 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, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1970), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [43549] = 15, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1886), 2, + [46424] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2013), 1, + sym_regex_flags, + STATE(1112), 1, + sym_comment, + ACTIONS(2009), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 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(1950), 17, + anon_sym_instanceof, + ACTIONS(2011), 26, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [43621] = 24, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [46480] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, + ACTIONS(2007), 1, + anon_sym_BQUOTE, + STATE(1113), 1, + sym_comment, + ACTIONS(2015), 2, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1896), 1, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(1886), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 8, + ACTIONS(1888), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [43711] = 4, - ACTIONS(1203), 1, + anon_sym_instanceof, + [46548] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1114), 1, sym_comment, - ACTIONS(1972), 1, - sym__automatic_semicolon, - ACTIONS(880), 13, + ACTIONS(2017), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95743,17 +100150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(882), 26, + ACTIONS(2019), 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, @@ -95770,11 +100177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43761] = 3, - ACTIONS(1203), 1, + [46602] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1115), 1, sym_comment, - ACTIONS(1974), 13, + ACTIONS(2021), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95787,8 +100199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1976), 27, + ACTIONS(2023), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -95815,144 +100226,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43809] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [46656] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1896), 1, + ACTIONS(1943), 1, + anon_sym_AMP_AMP, + ACTIONS(1945), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1886), 2, + 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 9, + ACTIONS(2025), 7, 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, - [43897] = 9, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [46752] = 20, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - STATE(1329), 2, + 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(1847), 13, - anon_sym_STAR, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_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_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1849), 20, - sym__automatic_semicolon, + ACTIONS(2025), 12, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - [43957] = 11, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [46836] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, + ACTIONS(1880), 1, + anon_sym_BQUOTE, + ACTIONS(1961), 1, + anon_sym_STAR_STAR, + STATE(1118), 1, + sym_comment, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1843), 12, + ACTIONS(2027), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -95965,31 +100400,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1845), 19, - sym__automatic_semicolon, + ACTIONS(2025), 18, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44021] = 3, - ACTIONS(1203), 1, + [46906] = 15, + 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, sym_comment, - ACTIONS(876), 13, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, 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, @@ -95998,87 +100458,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(878), 27, - sym__automatic_semicolon, + ACTIONS(2025), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, + [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, - [44069] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1978), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + STATE(1120), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1922), 27, + 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_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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [47072] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1121), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [44117] = 3, - ACTIONS(1203), 1, + ACTIONS(2029), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [47172] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1122), 1, sym_comment, - ACTIONS(1980), 13, + ACTIONS(2031), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96091,8 +100638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1982), 27, + ACTIONS(2029), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96119,113 +100665,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44165] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [47226] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(1886), 2, + STATE(1123), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1986), 4, + ACTIONS(2033), 5, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [44263] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [47326] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1947), 1, anon_sym_GT_GT, + ACTIONS(1951), 1, anon_sym_AMP, + ACTIONS(1959), 1, + 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_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, - anon_sym_SLASH, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 18, + 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, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -96234,20 +100804,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + [47416] = 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(1947), 1, + anon_sym_GT_GT, + ACTIONS(1959), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1961), 1, + anon_sym_STAR_STAR, + STATE(1125), 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, + ACTIONS(2027), 2, + anon_sym_AMP, + anon_sym_PIPE, + 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, - [44329] = 3, - ACTIONS(1203), 1, + ACTIONS(2025), 10, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [47504] = 12, + 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, sym_comment, - ACTIONS(1988), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(1866), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96260,20 +100908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1990), 27, + ACTIONS(1868), 19, + 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, @@ -96287,96 +100928,49 @@ 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_BQUOTE, - [44377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 40, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - 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, - 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, - [44423] = 17, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [47572] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1886), 2, + STATE(1127), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1948), 7, + ACTIONS(2027), 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(1950), 15, + ACTIONS(2025), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -96385,6 +100979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -96392,10 +100988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [44499] = 3, - ACTIONS(1203), 1, + [47648] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1128), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(2035), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96408,8 +101008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1994), 27, + ACTIONS(2037), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96436,80 +101035,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44547] = 27, - ACTIONS(1203), 1, + [47702] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1129), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(2039), 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(2041), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1833), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 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, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + [47756] = 25, + 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(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, + 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1996), 5, + ACTIONS(2025), 8, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [44643] = 3, - ACTIONS(1203), 1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [47850] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1131), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(2043), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96522,8 +101175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1994), 27, + ACTIONS(2045), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96550,11 +101202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44691] = 3, - ACTIONS(1203), 1, + [47904] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1132), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(2047), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96567,8 +101224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1994), 27, + ACTIONS(2049), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96595,11 +101251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44739] = 3, - ACTIONS(1203), 1, + [47958] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1133), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(2051), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96612,8 +101273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1994), 27, + ACTIONS(2053), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96640,11 +101300,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44787] = 3, - ACTIONS(1203), 1, + [48012] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1134), 1, sym_comment, - ACTIONS(876), 13, + ACTIONS(2055), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96657,8 +101322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(878), 27, + ACTIONS(2057), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96685,80 +101349,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44835] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [48066] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, + 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1998), 5, + ACTIONS(2025), 9, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [44931] = 3, - ACTIONS(1203), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [48158] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1136), 1, sym_comment, - ACTIONS(2000), 13, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96771,8 +101439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1996), 27, + ACTIONS(2061), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96799,11 +101466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44979] = 3, - ACTIONS(1203), 1, + [48212] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1137), 1, sym_comment, - ACTIONS(2002), 13, + ACTIONS(2063), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96816,8 +101488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2004), 27, + ACTIONS(2065), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96844,80 +101515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [45027] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2004), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [45123] = 3, - ACTIONS(1203), 1, + [48266] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1138), 1, sym_comment, - ACTIONS(2006), 13, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96930,8 +101537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2008), 27, + ACTIONS(2061), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -96958,11 +101564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45171] = 3, - ACTIONS(1203), 1, + [48320] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1139), 1, sym_comment, - ACTIONS(2010), 13, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -96975,8 +101586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2012), 27, + ACTIONS(2061), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97003,80 +101613,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45219] = 27, - ACTIONS(1203), 1, + [48374] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1140), 1, sym_comment, - ACTIONS(1829), 1, + 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), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1833), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48428] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1141), 1, + sym_comment, + ACTIONS(987), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 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(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2012), 5, + ACTIONS(989), 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, - [45315] = 3, - ACTIONS(1203), 1, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48482] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1142), 1, sym_comment, - ACTIONS(2014), 13, + ACTIONS(2067), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97089,8 +101733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2016), 27, + ACTIONS(2069), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97117,80 +101760,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45363] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [48536] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1886), 2, + STATE(1143), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2016), 5, + ACTIONS(2071), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45459] = 3, - ACTIONS(1203), 1, + [48636] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1144), 1, sym_comment, - ACTIONS(2018), 13, + ACTIONS(2073), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97203,8 +101854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2020), 27, + ACTIONS(2075), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97231,11 +101881,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48690] = 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, - [45507] = 3, - ACTIONS(1203), 1, + 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(1145), 1, sym_comment, - ACTIONS(2022), 13, + 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(2075), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [48790] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1146), 1, + sym_comment, + ACTIONS(2077), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97248,8 +101975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2024), 27, + ACTIONS(2079), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97276,11 +102002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45555] = 3, - ACTIONS(1203), 1, + [48844] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1147), 1, sym_comment, - ACTIONS(2026), 13, + ACTIONS(2081), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97293,8 +102024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2028), 27, + ACTIONS(2083), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97321,11 +102051,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [48898] = 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, - [45603] = 3, - ACTIONS(1203), 1, + 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(2030), 13, + 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, + sym_comment, + ACTIONS(2085), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97338,8 +102145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2032), 27, + ACTIONS(2087), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97366,80 +102172,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45651] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [49052] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1886), 2, + STATE(1150), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2034), 5, + ACTIONS(2087), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45747] = 3, - ACTIONS(1203), 1, + [49152] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1151), 1, sym_comment, - ACTIONS(2036), 13, + ACTIONS(2089), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97452,8 +102266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2038), 27, + ACTIONS(2091), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97480,11 +102293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45795] = 3, - ACTIONS(1203), 1, + [49206] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1152), 1, sym_comment, - ACTIONS(2040), 13, + ACTIONS(2093), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97497,8 +102315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2042), 27, + ACTIONS(2095), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97525,55 +102342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [45843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 40, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - 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, - 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, - [45889] = 3, - ACTIONS(1203), 1, + [49260] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1153), 1, sym_comment, - ACTIONS(2044), 13, + ACTIONS(2097), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97586,8 +102364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2046), 27, + ACTIONS(2099), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97614,13 +102391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45937] = 4, - ACTIONS(1203), 1, + [49314] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1154), 1, sym_comment, - ACTIONS(2052), 1, - sym_regex_flags, - ACTIONS(2048), 14, + ACTIONS(2101), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97633,15 +102413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - ACTIONS(2050), 25, + ACTIONS(2103), 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, @@ -97659,57 +102438,49 @@ 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, - [45987] = 19, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [49368] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1131), 2, + STATE(1155), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2027), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1948), 4, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 12, + ACTIONS(2025), 18, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -97718,14 +102489,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [46067] = 3, - ACTIONS(1203), 1, + anon_sym_instanceof, + [49438] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1156), 1, sym_comment, - ACTIONS(2054), 13, + ACTIONS(928), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97738,8 +102519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2056), 27, + ACTIONS(930), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97766,11 +102546,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46115] = 3, - ACTIONS(1203), 1, + [49492] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1157), 1, sym_comment, - ACTIONS(2058), 13, + ACTIONS(2105), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97783,8 +102568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2060), 27, + ACTIONS(2107), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97811,11 +102595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46163] = 3, - ACTIONS(1203), 1, + [49546] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1158), 1, sym_comment, - ACTIONS(2062), 13, + ACTIONS(2109), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97828,8 +102617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2064), 27, + ACTIONS(2111), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97856,11 +102644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46211] = 3, - ACTIONS(1203), 1, + [49600] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1159), 1, sym_comment, - ACTIONS(2066), 13, + ACTIONS(2113), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97873,8 +102666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2068), 27, + ACTIONS(2115), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97901,11 +102693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46259] = 3, - ACTIONS(1203), 1, + [49654] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1160), 1, sym_comment, - ACTIONS(2070), 13, + ACTIONS(2117), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97918,8 +102715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2072), 27, + ACTIONS(2119), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97946,11 +102742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46307] = 3, - ACTIONS(1203), 1, + [49708] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1161), 1, sym_comment, - ACTIONS(2074), 13, + ACTIONS(2121), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -97963,8 +102764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2076), 27, + ACTIONS(2123), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -97991,11 +102791,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46355] = 3, - ACTIONS(1203), 1, + [49762] = 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(1162), 1, sym_comment, - ACTIONS(2078), 13, + 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(2125), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [49862] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1163), 1, + sym_comment, + ACTIONS(2127), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98008,8 +102885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2080), 27, + ACTIONS(2129), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98036,11 +102912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46403] = 3, - ACTIONS(1203), 1, + [49916] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1164), 1, sym_comment, - ACTIONS(2082), 13, + ACTIONS(2131), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98053,8 +102934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2084), 27, + ACTIONS(2133), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98081,11 +102961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46451] = 3, - ACTIONS(1203), 1, + [49970] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1165), 1, sym_comment, - ACTIONS(2086), 13, + ACTIONS(2135), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98098,8 +102983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2088), 27, + ACTIONS(2137), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98126,11 +103010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46499] = 3, - ACTIONS(1203), 1, + [50024] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1166), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2139), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98143,8 +103032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2092), 27, + ACTIONS(2141), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98171,236 +103059,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46547] = 3, - ACTIONS(1203), 1, + [50078] = 18, + 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, sym_comment, - ACTIONS(2094), 13, + 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(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, - anon_sym_DASH_DASH, - ACTIONS(2096), 27, + ACTIONS(2025), 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_BQUOTE, - [46595] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [50158] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1886), 2, + STATE(1168), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2096), 5, + ACTIONS(2143), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [46691] = 25, - ACTIONS(1203), 1, + [50258] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1169), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(987), 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(989), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 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, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + [50312] = 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(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1886), 2, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1170), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 7, - sym__ternary_qmark, + ACTIONS(2145), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [46783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1521), 40, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - 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, - 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, - [46829] = 3, - ACTIONS(1203), 1, + [50412] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1171), 1, sym_comment, - ACTIONS(2098), 13, + ACTIONS(2147), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98413,8 +103336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2100), 27, + ACTIONS(2145), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98441,55 +103363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [46877] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 40, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_import, - 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, - 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, - [46923] = 3, - ACTIONS(1203), 1, + [50466] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1172), 1, sym_comment, - ACTIONS(880), 13, + ACTIONS(2149), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98502,8 +103385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(882), 27, + ACTIONS(2151), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98530,11 +103412,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46971] = 3, - ACTIONS(1203), 1, + [50520] = 8, + 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, sym_comment, - ACTIONS(846), 13, + ACTIONS(2149), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98547,18 +103440,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2151), 25, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + 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(848), 27, - sym__automatic_semicolon, + anon_sym_BQUOTE, + [50580] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1174), 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), 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, @@ -98575,80 +103513,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47019] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [50634] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1886), 2, + 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2102), 5, + ACTIONS(2153), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [47115] = 3, - ACTIONS(1203), 1, + [50734] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1176), 1, sym_comment, - ACTIONS(2104), 13, + ACTIONS(2155), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98661,8 +103607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2106), 27, + ACTIONS(2157), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98689,11 +103634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47163] = 3, - ACTIONS(1203), 1, + [50788] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1177), 1, sym_comment, - ACTIONS(884), 13, + ACTIONS(2159), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -98706,8 +103656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(886), 27, + ACTIONS(2161), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -98734,307 +103683,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [47211] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(846), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(848), 27, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [50842] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2001), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2003), 1, anon_sym_DOT, + ACTIONS(2005), 1, sym_optional_chain, + ACTIONS(2007), 1, + anon_sym_BQUOTE, + ACTIONS(2167), 1, anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [47259] = 3, - ACTIONS(1203), 1, + ACTIONS(2195), 1, + sym__ternary_qmark, + STATE(1178), 1, sym_comment, - ACTIONS(2108), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 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(2173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2110), 27, - sym__ternary_qmark, - anon_sym_LBRACE, + 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(2083), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + [50941] = 29, + 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, - anon_sym_RBRACK, + ACTIONS(2003), 1, anon_sym_DOT, + ACTIONS(2005), 1, sym_optional_chain, + ACTIONS(2007), 1, + anon_sym_BQUOTE, + ACTIONS(2167), 1, anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [47307] = 3, - ACTIONS(1203), 1, + ACTIONS(2195), 1, + sym__ternary_qmark, + ACTIONS(2199), 1, + anon_sym_in, + STATE(1179), 1, sym_comment, - ACTIONS(2112), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, - anon_sym_in, + anon_sym_SLASH, + ACTIONS(2165), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2114), 27, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2191), 2, + 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_instanceof, + ACTIONS(2197), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + [51042] = 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, - anon_sym_RBRACK, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [47355] = 3, - ACTIONS(1203), 1, + ACTIONS(2234), 1, + sym__ternary_qmark, + STATE(1180), 1, sym_comment, - ACTIONS(2116), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 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(2212), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2118), 27, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2230), 2, + 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_instanceof, + ACTIONS(1985), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [51141] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2001), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [47403] = 3, - ACTIONS(1203), 1, + ACTIONS(2234), 1, + sym__ternary_qmark, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1181), 1, sym_comment, - ACTIONS(2120), 13, + 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_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(2212), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2122), 27, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2238), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [47451] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [51244] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(1886), 2, + STATE(1182), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2124), 5, + ACTIONS(2033), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [47547] = 4, - ACTIONS(1203), 1, + anon_sym_SEMI, + [51343] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1183), 1, sym_comment, - ACTIONS(2126), 1, - sym__automatic_semicolon, - ACTIONS(820), 13, + ACTIONS(2159), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99047,16 +104063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(840), 26, + ACTIONS(2161), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -99074,211 +104089,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47597] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [51396] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + 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, + STATE(1184), 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, - anon_sym_SLASH, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 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(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [47662] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1707), 13, - anon_sym_STAR, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(2204), 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, - anon_sym_DASH_DASH, - ACTIONS(1709), 25, + ACTIONS(2226), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2153), 4, 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_BQUOTE, - [47711] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [51495] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2132), 1, - anon_sym_COMMA, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(1888), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2130), 2, + STATE(1185), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47810] = 17, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + ACTIONS(2145), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [51594] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2130), 2, + STATE(1186), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1948), 7, + ACTIONS(2027), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -99286,7 +104279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 14, + ACTIONS(2025), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -99301,61 +104294,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47885] = 8, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [51673] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(2169), 1, + ACTIONS(2005), 1, sym_optional_chain, - STATE(1279), 1, - sym_arguments, - ACTIONS(1853), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + 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, + 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(1187), 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, - anon_sym_SLASH, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1855), 21, + ACTIONS(2230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2240), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51776] = 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, anon_sym_AMP_AMP, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1188), 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(2242), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, + [51879] = 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, - [47942] = 4, - ACTIONS(1203), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + STATE(1189), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_EQ, - ACTIONS(1860), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99368,400 +104478,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1862), 25, + ACTIONS(2025), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [47991] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [51948] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, - anon_sym_AMP_AMP, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, - sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + STATE(1190), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2016), 4, + ACTIONS(2025), 8, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [48086] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [52039] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, - sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + STATE(1191), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2012), 4, + ACTIONS(2025), 7, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [48181] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [52132] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, + ACTIONS(2007), 1, + anon_sym_BQUOTE, + ACTIONS(2222), 1, + anon_sym_PERCENT, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + STATE(1192), 1, + sym_comment, + ACTIONS(2015), 2, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2202), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2220), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2147), 1, anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [52207] = 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(2210), 1, + anon_sym_GT_GT, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1193), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2027), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1970), 4, + ACTIONS(2025), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [48276] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [52294] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2027), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2203), 1, - anon_sym_COMMA, - ACTIONS(2034), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2130), 2, + STATE(1194), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48375] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + ACTIONS(2025), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [52383] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2027), 1, + anon_sym_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2206), 1, - anon_sym_COMMA, - ACTIONS(2209), 1, - anon_sym_RBRACE, - ACTIONS(2034), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2130), 2, + STATE(1195), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48474] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + 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, + [52474] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, + ACTIONS(2007), 1, + anon_sym_BQUOTE, + ACTIONS(2222), 1, + anon_sym_PERCENT, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + STATE(1196), 1, + sym_comment, + ACTIONS(2015), 2, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2202), 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, + anon_sym_PLUS, + anon_sym_DASH, + 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, + 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(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - STATE(1329), 2, + STATE(1197), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1948), 12, + ACTIONS(2027), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -99774,7 +104984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 17, + ACTIONS(2025), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -99792,563 +105002,629 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48539] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [52616] = 20, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1198), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1996), 4, + 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, - [48634] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, - sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + STATE(1199), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2004), 4, + ACTIONS(2025), 6, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [48729] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + anon_sym_QMARK_QMARK, + [52794] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1200), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2034), 4, + ACTIONS(1939), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [48824] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [52893] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1201), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1998), 4, + ACTIONS(1923), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [48919] = 27, - ACTIONS(1203), 1, + [52992] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, + anon_sym_EQ, + STATE(1202), 1, sym_comment, - ACTIONS(1956), 1, + 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__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1958), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(1962), 1, sym_optional_chain, - ACTIONS(1964), 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, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + [53047] = 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, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2244), 1, + anon_sym_COMMA, + ACTIONS(2247), 1, + anon_sym_RBRACE, + STATE(1203), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2033), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2034), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49014] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [53150] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2247), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_COMMA, + STATE(1204), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2153), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1996), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49109] = 17, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [53253] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2206), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2191), 1, + 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(2171), 2, + 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(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(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1329), 2, + 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(1948), 7, + ACTIONS(2204), 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(1950), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2226), 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, - [49184] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [53356] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(1886), 2, + ACTIONS(2254), 1, + anon_sym_COMMA, + ACTIONS(2257), 1, + anon_sym_RBRACE, + STATE(1206), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2153), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2211), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49279] = 12, - ACTIONS(1203), 1, + [53459] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1207), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 12, + ACTIONS(2035), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -100361,196 +105637,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 17, + ACTIONS(2037), 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, anon_sym_instanceof, - [49344] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, + [53512] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 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, - ACTIONS(2183), 1, anon_sym_AMP, - ACTIONS(2185), 1, - anon_sym_CARET, - ACTIONS(2187), 1, anon_sym_PIPE, - ACTIONS(2191), 1, - anon_sym_PERCENT, - ACTIONS(2171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2181), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2189), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2173), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2193), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 8, + ACTIONS(1906), 25, 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, - [49431] = 24, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(1962), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, anon_sym_AMP_AMP, - ACTIONS(2179), 1, - anon_sym_GT_GT, - ACTIONS(2183), 1, - anon_sym_AMP, - ACTIONS(2185), 1, - anon_sym_CARET, - ACTIONS(2187), 1, - anon_sym_PIPE, - ACTIONS(2191), 1, - anon_sym_PERCENT, - ACTIONS(2171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2181), 2, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2195), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2197), 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(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2173), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2193), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [49520] = 15, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + 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(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2259), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2191), 1, - anon_sym_PERCENT, - ACTIONS(2171), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2189), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1329), 2, - sym_template_string, + STATE(1209), 1, + sym_comment, + STATE(1313), 1, sym_arguments, - ACTIONS(1948), 8, + 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(1950), 16, + 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, @@ -100558,587 +105757,674 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49591] = 21, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + 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(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2206), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2191), 1, - anon_sym_PERCENT, - ACTIONS(1948), 2, + ACTIONS(2214), 1, anon_sym_AMP, + ACTIONS(2216), 1, + anon_sym_CARET, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2171), 2, + 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(1210), 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(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2261), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [49674] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [53735] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1211), 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(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2263), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2004), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49769] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2112), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2114), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [53838] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [49816] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + 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(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2143), 1, + ACTIONS(2206), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2130), 2, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + STATE(1213), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 8, + ACTIONS(2075), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [49903] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [54036] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + STATE(1214), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2102), 4, + ACTIONS(2083), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [49998] = 22, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(1956), 1, + [54135] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2206), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2191), 1, + ACTIONS(2216), 1, + anon_sym_CARET, + ACTIONS(2218), 1, + anon_sym_PIPE, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2171), 2, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + STATE(1215), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 9, + ACTIONS(2087), 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, - [50083] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [54234] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(1886), 2, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1216), 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(1898), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + ACTIONS(2267), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2213), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50178] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(1956), 1, + [54337] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, + ACTIONS(2206), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2191), 1, + ACTIONS(2218), 1, + anon_sym_PIPE, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2171), 2, + 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(1217), 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(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2269), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 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, - [50265] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [54440] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + STATE(1218), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2124), 4, + ACTIONS(2029), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [50360] = 4, - ACTIONS(824), 1, + [54539] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, anon_sym_EQ, - ACTIONS(1203), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1219), 1, sym_comment, - ACTIONS(822), 13, + ACTIONS(866), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101151,8 +106437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 25, + ACTIONS(872), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -101177,241 +106462,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50409] = 28, - ACTIONS(1203), 1, + [54594] = 6, + 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(1956), 1, + 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), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1958), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(1962), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2128), 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, - ACTIONS(2175), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [54649] = 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(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2217), 1, - anon_sym_in, - ACTIONS(2171), 2, + STATE(1221), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2173), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2193), 3, + 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, - ACTIONS(2215), 4, + ACTIONS(2143), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [50506] = 14, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [54748] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2191), 1, - anon_sym_PERCENT, - ACTIONS(2171), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1950), 16, - sym__automatic_semicolon, + 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, - 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, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [50575] = 19, - ACTIONS(1203), 1, + STATE(1222), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, + STATE(1887), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(2015), 2, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2179), 1, - anon_sym_GT_GT, - ACTIONS(2191), 1, - anon_sym_PERCENT, - ACTIONS(2171), 2, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2173), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2193), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1948), 4, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [50654] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - STATE(1279), 1, + ACTIONS(2271), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, + sym_template_string, sym_arguments, - ACTIONS(1853), 13, - anon_sym_STAR, + ACTIONS(2204), 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, - anon_sym_DASH_DASH, - ACTIONS(1855), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - 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(2226), 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_BQUOTE, - [50705] = 3, - ACTIONS(1203), 1, + [54851] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1899), 1, + anon_sym_EQ, + STATE(1223), 1, sym_comment, - ACTIONS(1936), 13, + ACTIONS(1892), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101424,8 +106679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1938), 26, + ACTIONS(1894), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -101433,7 +106687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -101451,356 +106704,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50752] = 25, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [54906] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2171), 2, + 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(1224), 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(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2273), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [50843] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [55009] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + STATE(1225), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1998), 4, + ACTIONS(2125), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [50938] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [55108] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1226), 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(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2275), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2096), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51033] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [55211] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1227), 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(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2277), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1888), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51128] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [55314] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2177), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2183), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2187), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2191), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, + ACTIONS(2224), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1228), 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(2181), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2189), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2195), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2279), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1922), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51223] = 6, - ACTIONS(824), 1, + [55417] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1899), 1, anon_sym_EQ, - ACTIONS(1203), 1, + STATE(1229), 1, sym_comment, - ACTIONS(2220), 1, - sym__automatic_semicolon, - ACTIONS(840), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(822), 13, + ACTIONS(1892), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101813,13 +107091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 22, + ACTIONS(1894), 26, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -101836,156 +107116,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51276] = 25, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [55472] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2130), 2, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1230), 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(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2281), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [51367] = 19, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [55575] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2143), 1, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2155), 1, + 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(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2130), 2, + ACTIONS(2193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2195), 1, + sym__ternary_qmark, + STATE(1231), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1329), 2, + 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(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1948), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1950), 11, + ACTIONS(2143), 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_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [51446] = 12, - ACTIONS(1203), 1, + [55674] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1917), 1, + anon_sym_EQ, + STATE(1232), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2157), 1, - anon_sym_STAR_STAR, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 12, + ACTIONS(1910), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -101998,77 +107284,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 17, - sym__automatic_semicolon, + ACTIONS(1912), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51511] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1750), 1, - anon_sym_EQ, - ACTIONS(1707), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1709), 25, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [55729] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2001), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1233), 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(2283), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [51560] = 5, - ACTIONS(824), 1, + [55832] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1811), 1, anon_sym_EQ, - ACTIONS(1203), 1, + STATE(1234), 1, sym_comment, - ACTIONS(2126), 1, - sym__automatic_semicolon, - ACTIONS(820), 13, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102081,15 +107406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(840), 24, + ACTIONS(1757), 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, @@ -102106,132 +107431,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51611] = 14, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [55887] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2155), 1, - anon_sym_PERCENT, - ACTIONS(2157), 1, - anon_sym_STAR_STAR, - ACTIONS(2130), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1950), 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, + ACTIONS(2177), 1, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2179), 1, + anon_sym_PIPE, + ACTIONS(2183), 1, + anon_sym_PERCENT, + ACTIONS(2185), 1, + anon_sym_STAR_STAR, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [51680] = 23, - ACTIONS(1203), 1, + ACTIONS(2195), 1, + sym__ternary_qmark, + STATE(1235), 1, sym_comment, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, + ACTIONS(2015), 2, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2143), 1, - anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2155), 1, - anon_sym_PERCENT, - ACTIONS(2157), 1, - anon_sym_STAR_STAR, - ACTIONS(2130), 2, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 8, + ACTIONS(2125), 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, - [51767] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1867), 1, + [55986] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, anon_sym_EQ, - ACTIONS(1860), 13, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2285), 1, + sym__automatic_semicolon, + STATE(1236), 1, + sym_comment, + ACTIONS(932), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(866), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102244,16 +107531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1862), 25, + ACTIONS(872), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -102270,76 +107553,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51816] = 22, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(1956), 1, + [56045] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2143), 1, + ACTIONS(1943), 1, + anon_sym_AMP_AMP, + ACTIONS(1945), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2155), 1, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1955), 1, + anon_sym_PIPE, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2130), 2, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1237), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 9, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2287), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + [56144] = 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(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, + anon_sym_PERCENT, + ACTIONS(2185), 1, + anon_sym_STAR_STAR, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - [51901] = 4, - ACTIONS(824), 1, + ACTIONS(2195), 1, + sym__ternary_qmark, + STATE(1238), 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(2087), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [56243] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, anon_sym_EQ, - ACTIONS(1203), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1987), 1, + sym__automatic_semicolon, + STATE(1239), 1, sym_comment, - ACTIONS(822), 13, + ACTIONS(864), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102352,9 +107721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 25, - sym__automatic_semicolon, + ACTIONS(932), 25, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -102378,471 +107745,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51950] = 21, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [56300] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2143), 1, + ACTIONS(2167), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2155), 1, - anon_sym_PERCENT, - ACTIONS(2157), 1, - anon_sym_STAR_STAR, - ACTIONS(1948), 2, + ACTIONS(2175), 1, anon_sym_AMP, + ACTIONS(2177), 1, + anon_sym_CARET, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(2130), 2, + 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(1240), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 9, + ACTIONS(2075), 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, - [52033] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [56399] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1241), 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(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2289), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2102), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [52128] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [56502] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2195), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1242), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1922), 4, + ACTIONS(1923), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [52223] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [56601] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2195), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1243), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1888), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [52318] = 15, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2155), 1, - anon_sym_PERCENT, - ACTIONS(2157), 1, - anon_sym_STAR_STAR, - ACTIONS(2130), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2153), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 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(1950), 16, + ACTIONS(1939), 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_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, - [52389] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [56700] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1244), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2096), 4, + ACTIONS(2025), 6, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [52484] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + anon_sym_QMARK_QMARK, + [56795] = 20, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1245), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2124), 4, + 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_of, anon_sym_SEMI, - [52579] = 4, - ACTIONS(1203), 1, + 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, + 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(2185), 1, + anon_sym_STAR_STAR, + STATE(1246), 1, sym_comment, - ACTIONS(1880), 1, - anon_sym_EQ, - ACTIONS(1873), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -102855,486 +108203,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1875), 25, + ACTIONS(2025), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [52628] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [56947] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2128), 1, - anon_sym_STAR_STAR, - ACTIONS(2175), 1, - anon_sym_AMP_AMP, - ACTIONS(2177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2179), 1, - anon_sym_GT_GT, ACTIONS(2183), 1, - anon_sym_AMP, - ACTIONS(2185), 1, - anon_sym_CARET, - ACTIONS(2187), 1, - anon_sym_PIPE, - ACTIONS(2191), 1, anon_sym_PERCENT, - ACTIONS(2199), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2201), 1, - sym__ternary_qmark, - ACTIONS(2171), 2, + ACTIONS(2185), 1, + anon_sym_STAR_STAR, + STATE(1247), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2181), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2189), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2195), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2197), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2173), 3, + ACTIONS(2027), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2193), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1970), 4, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2025), 16, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [52723] = 24, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + 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, + [57020] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2143), 1, + ACTIONS(2027), 1, + anon_sym_PIPE, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2130), 2, + STATE(1248), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 7, + ACTIONS(2025), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [52812] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [57111] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2027), 1, + anon_sym_PIPE, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2130), 2, + 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(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2016), 4, + ACTIONS(2025), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [52907] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2139), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, - anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 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(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1250), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2027), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2012), 4, + ACTIONS(2025), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [53002] = 4, - ACTIONS(1203), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [57287] = 16, + 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(2183), 1, + anon_sym_PERCENT, + ACTIONS(2185), 1, + anon_sym_STAR_STAR, + STATE(1251), 1, sym_comment, - ACTIONS(1880), 1, - anon_sym_EQ, - ACTIONS(1873), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1303), 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, - anon_sym_DASH_DASH, - ACTIONS(1875), 25, + ACTIONS(2025), 16, + 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53051] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [57362] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2222), 1, - anon_sym_COMMA, - ACTIONS(2130), 2, + STATE(1252), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2224), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53147] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(2025), 7, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, + STATE(1253), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2226), 3, + ACTIONS(2025), 8, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [53241] = 3, - ACTIONS(1203), 1, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [57546] = 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(2185), 1, + anon_sym_STAR_STAR, + STATE(1254), 1, sym_comment, - ACTIONS(2098), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103347,182 +108709,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2100), 25, + ACTIONS(2025), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53287] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [57615] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, + 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(1255), 1, + sym_comment, + ACTIONS(2015), 2, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, + 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, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2025), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [57694] = 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(1892), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2195), 1, sym__ternary_qmark, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2230), 1, - anon_sym_RPAREN, - STATE(2021), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, + STATE(1256), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53385] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(2145), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [57793] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2167), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2171), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2175), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2177), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2179), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2183), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2185), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2195), 1, sym__ternary_qmark, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2232), 1, - anon_sym_RBRACK, - STATE(1984), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, + STATE(1257), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2165), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53483] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_EQ, - ACTIONS(2234), 1, - anon_sym_in, - ACTIONS(2237), 1, + ACTIONS(2153), 4, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_of, - ACTIONS(1873), 12, + anon_sym_SEMI, + [57892] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, + anon_sym_EQ, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1258), 1, + sym_comment, + ACTIONS(866), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -103533,12 +108952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1875), 23, + ACTIONS(872), 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, @@ -103557,142 +108977,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53535] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1788), 1, - anon_sym_EQ, - ACTIONS(1785), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1707), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [57947] = 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(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, + anon_sym_PERCENT, + ACTIONS(2185), 1, + anon_sym_STAR_STAR, + ACTIONS(2193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2195), 1, + sym__ternary_qmark, + STATE(1259), 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, - anon_sym_SLASH, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 20, - sym__ternary_qmark, + 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(1985), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [58046] = 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(2167), 1, anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53585] = 3, - ACTIONS(1203), 1, + ACTIONS(2195), 1, + sym__ternary_qmark, + STATE(1260), 1, sym_comment, - ACTIONS(2054), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 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(2173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2056), 25, + 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(2033), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + [58145] = 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(2167), 1, anon_sym_AMP_AMP, + ACTIONS(2169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53631] = 3, - ACTIONS(1203), 1, + ACTIONS(2195), 1, + sym__ternary_qmark, + STATE(1261), 1, sym_comment, - ACTIONS(2120), 13, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2163), 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(2173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2122), 25, + 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(2029), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + [58244] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2291), 1, + anon_sym_COMMA, + ACTIONS(2293), 1, + anon_sym_RPAREN, + STATE(1262), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53677] = 3, - ACTIONS(1203), 1, + [58346] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1263), 1, sym_comment, - ACTIONS(2044), 13, + ACTIONS(1991), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103705,8 +109284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2046), 25, + ACTIONS(1993), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -103731,11 +109309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53723] = 3, - ACTIONS(1203), 1, + [58398] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1264), 1, sym_comment, - ACTIONS(2036), 13, + ACTIONS(2077), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103748,8 +109331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2038), 25, + ACTIONS(2079), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -103774,168 +109356,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53769] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1952), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1954), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [58450] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53815] = 6, - ACTIONS(1203), 1, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2291), 1, + anon_sym_COMMA, + ACTIONS(2295), 1, + anon_sym_RPAREN, + STATE(1265), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(2169), 1, - sym_optional_chain, - ACTIONS(1952), 13, + 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_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1949), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1954), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [53867] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [58552] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + ACTIONS(2297), 1, + anon_sym_COLON, + STATE(1266), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53963] = 3, - ACTIONS(1203), 1, + [58654] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1267), 1, sym_comment, - ACTIONS(2108), 13, + ACTIONS(2073), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103948,8 +109522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2110), 25, + ACTIONS(2075), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -103974,11 +109547,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54009] = 3, - ACTIONS(1203), 1, + [58706] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1268), 1, sym_comment, - ACTIONS(2026), 13, + ACTIONS(2039), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -103991,8 +109569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2028), 25, + ACTIONS(2041), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -104017,79 +109594,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54055] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [58758] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, - anon_sym_COMMA, - ACTIONS(2130), 2, + 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2241), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54151] = 3, - ACTIONS(1203), 1, + ACTIONS(2299), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [58856] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1270), 1, sym_comment, - ACTIONS(2018), 13, + ACTIONS(2109), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104102,8 +109686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2020), 25, + ACTIONS(2111), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -104128,13 +109711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54197] = 3, - ACTIONS(1203), 1, + [58908] = 8, + 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, sym_comment, - ACTIONS(2104), 13, + ACTIONS(1755), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -104145,14 +109738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2106), 25, + ACTIONS(1757), 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, @@ -104171,61 +109761,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [54243] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2014), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(2016), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [58966] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2291), 1, + anon_sym_COMMA, + ACTIONS(2301), 1, + anon_sym_RBRACK, + STATE(1272), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [54289] = 5, - ACTIONS(1203), 1, + [59068] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1273), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_EQ, - ACTIONS(2243), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1860), 13, + ACTIONS(2047), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104238,10 +109855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1862), 20, + ACTIONS(2049), 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, @@ -104259,55 +109880,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [54339] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1707), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1709), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [59120] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2291), 1, + anon_sym_COMMA, + ACTIONS(2303), 1, + anon_sym_RPAREN, + STATE(1274), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [54387] = 3, - ACTIONS(1203), 1, + [59222] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1275), 1, sym_comment, - ACTIONS(2010), 13, + ACTIONS(1977), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104320,8 +109974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2012), 25, + ACTIONS(1979), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -104346,11 +109999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54433] = 3, - ACTIONS(1203), 1, + [59274] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1276), 1, sym_comment, - ACTIONS(2006), 13, + ACTIONS(2051), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104363,8 +110021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2008), 25, + ACTIONS(2053), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -104389,18 +110046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54479] = 6, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(1203), 1, + [59326] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1277), 1, sym_comment, - ACTIONS(2245), 1, - anon_sym_in, - ACTIONS(2248), 1, - anon_sym_of, - ACTIONS(822), 12, + ACTIONS(2055), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -104411,12 +110068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 23, + ACTIONS(2057), 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, @@ -104435,18 +110093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54531] = 6, - ACTIONS(1203), 1, + [59378] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1278), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_EQ, - ACTIONS(2243), 1, - anon_sym_of, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(1860), 12, + ACTIONS(2105), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -104457,12 +110115,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1862), 23, + ACTIONS(2107), 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, @@ -104481,86 +110140,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54583] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [59430] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2253), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54679] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1775), 1, + [59532] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1852), 1, anon_sym_EQ, - ACTIONS(1773), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1707), 13, + STATE(1280), 1, + sym_comment, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104573,10 +110236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 20, + ACTIONS(1757), 25, + 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, @@ -104594,11 +110260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54729] = 3, - ACTIONS(1203), 1, + [59586] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1281), 1, sym_comment, - ACTIONS(2002), 13, + ACTIONS(2017), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104611,8 +110282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2004), 25, + ACTIONS(2019), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -104637,170 +110307,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [54775] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1880), 1, - anon_sym_EQ, - ACTIONS(2237), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1873), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1875), 20, - 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_BQUOTE, - [54825] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [59638] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + ACTIONS(2307), 1, + anon_sym_RPAREN, + STATE(1282), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2255), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54921] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1760), 1, + ACTIONS(1941), 3, anon_sym_in, - ACTIONS(1763), 1, - anon_sym_of, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(1707), 12, - 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, - anon_sym_DASH_DASH, - ACTIONS(1709), 23, - 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_AMP_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(1963), 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_BQUOTE, - [54973] = 3, - ACTIONS(1203), 1, + [59740] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1283), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(961), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -104813,8 +110401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1994), 25, + ACTIONS(965), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -104839,208 +110426,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [55019] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1707), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1709), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [59792] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [55065] = 3, - ACTIONS(1203), 1, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2291), 1, + anon_sym_COMMA, + ACTIONS(2309), 1, + anon_sym_RBRACK, + STATE(1284), 1, sym_comment, - ACTIONS(1992), 13, + 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_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1949), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1994), 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, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [55111] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1992), 13, - anon_sym_STAR, + STATE(1142), 2, + sym_template_string, + sym_arguments, + ACTIONS(1941), 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, - anon_sym_DASH_DASH, - ACTIONS(1994), 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, - sym_optional_chain, - anon_sym_AMP_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(1963), 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_BQUOTE, - [55157] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [59894] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + ACTIONS(2313), 1, + anon_sym_RBRACK, + STATE(1285), 1, + sym_comment, + STATE(2134), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2257), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55253] = 3, - ACTIONS(1203), 1, + [59996] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1286), 1, sym_comment, - ACTIONS(1992), 13, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105053,8 +110592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1994), 25, + ACTIONS(2061), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -105079,122 +110617,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [55299] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1988), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1990), 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, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, anon_sym_BQUOTE, - [55345] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [60048] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2259), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55441] = 3, - ACTIONS(1203), 1, + [60150] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1899), 1, + anon_sym_EQ, + STATE(1288), 1, sym_comment, - ACTIONS(2082), 13, + ACTIONS(2317), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1892), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105207,15 +110718,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2084), 25, - sym__automatic_semicolon, + ACTIONS(1894), 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, @@ -105233,11 +110738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55487] = 3, - ACTIONS(1203), 1, + [60206] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1289), 1, sym_comment, - ACTIONS(924), 13, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105250,8 +110760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(928), 25, + ACTIONS(2061), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -105276,11 +110785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55533] = 3, - ACTIONS(1203), 1, + [60258] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1290), 1, sym_comment, - ACTIONS(2066), 13, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105293,8 +110807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2068), 25, + ACTIONS(2061), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -105319,11 +110832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55579] = 3, - ACTIONS(1203), 1, + [60310] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1291), 1, sym_comment, - ACTIONS(2062), 13, + ACTIONS(2059), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105336,8 +110854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2064), 25, + ACTIONS(2061), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -105362,13 +110879,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55625] = 3, - ACTIONS(1203), 1, + [60362] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1917), 1, + anon_sym_EQ, + ACTIONS(2319), 1, + anon_sym_in, + ACTIONS(2322), 1, + anon_sym_of, + STATE(1292), 1, sym_comment, - ACTIONS(2058), 13, + ACTIONS(1910), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -105379,14 +110906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2060), 25, + ACTIONS(1912), 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, @@ -105405,13 +110929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55671] = 4, - ACTIONS(1203), 1, + [60420] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1293), 1, sym_comment, - ACTIONS(2261), 1, - sym_regex_flags, - ACTIONS(2048), 14, + ACTIONS(2117), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105424,14 +110951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - ACTIONS(2050), 23, + 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, @@ -105448,12 +110974,18 @@ 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, - [55719] = 3, - ACTIONS(1203), 1, + [60472] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1294), 1, sym_comment, - ACTIONS(2116), 13, + ACTIONS(2121), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105466,8 +110998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2118), 25, + ACTIONS(2123), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -105492,78 +111023,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55765] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [60524] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + ACTIONS(2291), 1, + anon_sym_COMMA, + ACTIONS(2324), 1, + anon_sym_RPAREN, + STATE(1295), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [55859] = 3, - ACTIONS(1203), 1, + [60626] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1296), 1, sym_comment, - ACTIONS(2040), 13, + ACTIONS(2113), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105576,8 +111117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2042), 25, + ACTIONS(2115), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -105602,15 +111142,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55905] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1795), 1, + [60678] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1899), 1, anon_sym_EQ, - ACTIONS(1707), 13, - anon_sym_STAR, + ACTIONS(2317), 1, + anon_sym_of, + ACTIONS(2326), 1, anon_sym_in, + STATE(1297), 1, + sym_comment, + ACTIONS(1892), 11, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -105621,13 +111169,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 24, + ACTIONS(1894), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -105646,18 +111192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55953] = 5, - ACTIONS(1203), 1, + [60736] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1298), 1, sym_comment, - ACTIONS(1720), 1, - anon_sym_EQ, - ACTIONS(1791), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1707), 13, + ACTIONS(2135), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105670,10 +111214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 20, + ACTIONS(2137), 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, @@ -105691,263 +111239,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56003] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [60788] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2263), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56099] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2000), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1996), 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, - sym_optional_chain, - anon_sym_AMP_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(1963), 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_BQUOTE, - [56145] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [60890] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + ACTIONS(2331), 1, + anon_sym_RBRACK, + STATE(1300), 1, + sym_comment, + STATE(2020), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2265), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56241] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [60992] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2267), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56337] = 5, - ACTIONS(1203), 1, + [61094] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1302), 1, sym_comment, - ACTIONS(2269), 1, - sym__automatic_semicolon, - ACTIONS(989), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(924), 13, + ACTIONS(2063), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -105960,11 +111477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(928), 22, + ACTIONS(2065), 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, @@ -105983,11 +111502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56387] = 3, - ACTIONS(1203), 1, + [61146] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1303), 1, sym_comment, - ACTIONS(1940), 13, + ACTIONS(2067), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106000,8 +111524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1942), 25, + ACTIONS(2069), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -106026,79 +111549,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56433] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [61198] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(1986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(2130), 2, + ACTIONS(2335), 1, + anon_sym_RPAREN, + STATE(1304), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56529] = 3, - ACTIONS(1203), 1, + [61300] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1305), 1, sym_comment, - ACTIONS(916), 13, + ACTIONS(2021), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106111,8 +111643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(920), 25, + ACTIONS(2023), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -106137,56 +111668,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56575] = 5, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2248), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(822), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [61352] = 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, + 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, + STATE(1306), 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, - anon_sym_SLASH, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 20, - sym__ternary_qmark, + ACTIONS(2230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1303), 2, + sym_template_string, + sym_arguments, + ACTIONS(2197), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + 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, + [61450] = 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(2337), 1, + anon_sym_RBRACK, + STATE(1307), 1, + sym_comment, + STATE(2134), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [56625] = 3, - ACTIONS(1203), 1, + [61552] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1308), 1, sym_comment, - ACTIONS(908), 13, + ACTIONS(2031), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106199,8 +111832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(912), 25, + ACTIONS(2029), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -106225,11 +111857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56671] = 3, - ACTIONS(1203), 1, + [61604] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1309), 1, sym_comment, - ACTIONS(898), 13, + ACTIONS(2127), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106242,8 +111879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(902), 25, + ACTIONS(2129), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -106268,11 +111904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56717] = 3, - ACTIONS(1203), 1, + [61656] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1310), 1, sym_comment, - ACTIONS(1980), 13, + ACTIONS(2139), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106285,8 +111926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1982), 25, + ACTIONS(2141), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -106311,149 +111951,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [56763] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [61708] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2228), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2271), 1, + ACTIONS(2339), 1, anon_sym_RPAREN, - STATE(2101), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56861] = 29, - ACTIONS(1203), 1, + STATE(1311), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, + STATE(1762), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2273), 1, - anon_sym_RBRACK, - STATE(2024), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56959] = 3, - ACTIONS(1203), 1, + [61810] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1312), 1, sym_comment, - ACTIONS(1932), 13, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106466,8 +112045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1934), 25, + ACTIONS(1757), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -106492,80 +112070,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57005] = 29, - ACTIONS(1203), 1, + [61862] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1313), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1973), 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(1975), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2275), 1, - anon_sym_RBRACK, - STATE(2024), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [57103] = 3, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61914] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2341), 1, + sym_regex_flags, + STATE(1314), 1, sym_comment, - ACTIONS(1924), 13, + ACTIONS(2009), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106578,14 +112141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1926), 25, + anon_sym_instanceof, + ACTIONS(2011), 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, @@ -106602,81 +112164,168 @@ 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, - [57149] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [61968] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, + 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(2343), 1, + anon_sym_RPAREN, + STATE(1315), 1, + sym_comment, + STATE(1762), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, + 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, + [62070] = 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(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + ACTIONS(2345), 1, + anon_sym_RPAREN, + STATE(1316), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2277), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57245] = 3, - ACTIONS(1203), 1, + [62172] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, + anon_sym_EQ, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1317), 1, sym_comment, - ACTIONS(1817), 13, + ACTIONS(2347), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(866), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106689,15 +112338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1823), 25, - sym__automatic_semicolon, + ACTIONS(872), 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, @@ -106715,11 +112358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57291] = 3, - ACTIONS(1203), 1, + [62228] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1824), 1, + anon_sym_EQ, + STATE(1318), 1, sym_comment, - ACTIONS(1978), 13, + ACTIONS(1821), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106732,14 +112387,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1757), 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, - ACTIONS(1922), 25, + anon_sym_BQUOTE, + [62284] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2349), 1, sym__automatic_semicolon, + STATE(1319), 1, + sym_comment, + ACTIONS(1025), 2, + anon_sym_else, + anon_sym_while, + 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), 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, @@ -106758,80 +112456,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57337] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [62340] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, + 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(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, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, + 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, + [62442] = 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(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2228), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2279), 1, - anon_sym_RPAREN, - STATE(1980), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, + 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57435] = 3, - ACTIONS(1203), 1, + [62544] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1815), 1, + anon_sym_EQ, + STATE(1322), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -106844,14 +112624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2092), 25, + ACTIONS(1757), 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, @@ -106870,13 +112648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57481] = 3, - ACTIONS(1203), 1, + [62598] = 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(1323), 1, sym_comment, - ACTIONS(2070), 13, + ACTIONS(866), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -106887,14 +112675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2072), 25, + ACTIONS(872), 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, @@ -106913,59 +112698,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [57527] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1944), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(1946), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [62656] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + 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, + 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [57573] = 4, - ACTIONS(1203), 1, + [62758] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1325), 1, sym_comment, - ACTIONS(2261), 1, - sym_regex_flags, - ACTIONS(2048), 15, + ACTIONS(2155), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -106976,13 +112792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - ACTIONS(2050), 22, + ACTIONS(2157), 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, @@ -106999,86 +112815,95 @@ 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, - [57621] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [62810] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2228), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2281), 1, + ACTIONS(2360), 1, anon_sym_RPAREN, - STATE(2111), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, + STATE(1326), 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57719] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2283), 1, + [62912] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2362), 1, sym__automatic_semicolon, - ACTIONS(983), 2, + STATE(1327), 1, + sym_comment, + ACTIONS(1021), 2, anon_sym_else, anon_sym_while, - ACTIONS(916), 13, + ACTIONS(969), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107091,8 +112916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(920), 22, + ACTIONS(973), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -107114,11 +112938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57769] = 3, - ACTIONS(1203), 1, + [62968] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1328), 1, sym_comment, - ACTIONS(1974), 13, + ACTIONS(2147), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107131,8 +112960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1976), 25, + ACTIONS(2145), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -107157,129 +112985,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57815] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [63020] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + ACTIONS(2364), 1, + anon_sym_RPAREN, + STATE(1329), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2285), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57911] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2287), 1, - sym__automatic_semicolon, - ACTIONS(977), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(908), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(912), 22, - sym__ternary_qmark, - anon_sym_COMMA, + [63122] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2291), 1, + anon_sym_COMMA, + ACTIONS(2366), 1, + anon_sym_RBRACE, + STATE(1330), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [57961] = 5, - ACTIONS(1203), 1, + [63224] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1331), 1, sym_comment, - ACTIONS(2289), 1, - sym__automatic_semicolon, - ACTIONS(973), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(898), 13, + ACTIONS(2093), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107292,11 +113151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(902), 22, + 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, @@ -107315,56 +113176,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58011] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2291), 1, - sym__automatic_semicolon, - ACTIONS(1017), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(854), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [63276] = 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(2311), 1, + anon_sym_COMMA, + ACTIONS(2368), 1, + anon_sym_RPAREN, + STATE(1332), 1, + sym_comment, + STATE(2094), 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, - anon_sym_SLASH, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(858), 22, - sym__ternary_qmark, - anon_sym_COMMA, + 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, + [63378] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(2370), 1, + anon_sym_RPAREN, + STATE(1333), 1, + sym_comment, + STATE(2077), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [58061] = 3, - ACTIONS(1203), 1, + [63480] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1334), 1, sym_comment, - ACTIONS(890), 13, + ACTIONS(898), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107377,8 +113342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(894), 25, + ACTIONS(902), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -107403,13 +113367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58107] = 3, - ACTIONS(1203), 1, + [63532] = 6, + 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(870), 13, + ACTIONS(2009), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -107420,14 +113392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(874), 25, + anon_sym_instanceof, + ACTIONS(2011), 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, @@ -107444,13 +113414,24 @@ 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, - [58153] = 3, - ACTIONS(1203), 1, + [63586] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1841), 1, + anon_sym_EQ, + STATE(1336), 1, sym_comment, - ACTIONS(862), 13, + ACTIONS(1839), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107463,15 +113444,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(866), 25, - sym__automatic_semicolon, + ACTIONS(1757), 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, @@ -107489,84 +113464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [58199] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, - anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, - anon_sym_PERCENT, - ACTIONS(2157), 1, - anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2222), 1, - anon_sym_COMMA, - ACTIONS(2130), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2145), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2293), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2137), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2159), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58295] = 5, - ACTIONS(1203), 1, + [63642] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1337), 1, sym_comment, - ACTIONS(2295), 1, - sym__automatic_semicolon, - ACTIONS(965), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(890), 13, + ACTIONS(922), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107579,11 +113486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(894), 22, + ACTIONS(926), 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, @@ -107602,16 +113511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58345] = 5, - ACTIONS(1203), 1, + [63694] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1338), 1, sym_comment, - ACTIONS(2297), 1, - sym__automatic_semicolon, - ACTIONS(958), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(870), 13, + ACTIONS(2131), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107624,11 +113533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(874), 22, + 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, @@ -107647,16 +113558,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58395] = 5, - ACTIONS(1203), 1, + [63746] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1917), 1, + anon_sym_EQ, + STATE(1339), 1, sym_comment, - ACTIONS(2299), 1, - sym__automatic_semicolon, - ACTIONS(952), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(862), 13, + ACTIONS(2322), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1910), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107669,12 +113587,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(866), 22, + ACTIONS(1912), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -107692,54 +113607,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [58445] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(854), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_DASH_DASH, - ACTIONS(858), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + [63802] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + 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, - anon_sym_LT_EQ, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(2372), 1, + anon_sym_RPAREN, + STATE(1340), 1, + sym_comment, + STATE(2084), 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_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [58491] = 3, - ACTIONS(1203), 1, + [63904] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1341), 1, sym_comment, - ACTIONS(2074), 13, + ACTIONS(1995), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107752,8 +113701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2076), 25, + ACTIONS(1997), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -107778,11 +113726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58537] = 3, - ACTIONS(1203), 1, + [63956] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1342), 1, sym_comment, - ACTIONS(2022), 13, + ACTIONS(906), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107795,8 +113748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2024), 25, + ACTIONS(910), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -107821,11 +113773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58583] = 3, - ACTIONS(1203), 1, + [64008] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1343), 1, sym_comment, - ACTIONS(1928), 13, + ACTIONS(914), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107838,8 +113795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1930), 25, + ACTIONS(918), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -107864,11 +113820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58629] = 3, - ACTIONS(1203), 1, + [64060] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1344), 1, sym_comment, - ACTIONS(2030), 13, + ACTIONS(2085), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107881,8 +113842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2032), 25, + ACTIONS(2087), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -107907,80 +113867,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58675] = 29, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [64112] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2301), 1, - anon_sym_RPAREN, - STATE(2075), 1, - aux_sym_array_repeat1, - ACTIONS(1886), 2, + STATE(1345), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2071), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58773] = 3, - ACTIONS(1203), 1, + [64210] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1346), 1, sym_comment, - ACTIONS(1882), 13, + ACTIONS(2081), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -107993,8 +113959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1884), 25, + ACTIONS(2083), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -108019,11 +113984,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58819] = 3, - ACTIONS(1203), 1, + [64262] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1347), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2101), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -108036,8 +114006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2080), 25, + ACTIONS(2103), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -108062,147 +114031,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58865] = 28, - ACTIONS(1203), 1, + [64314] = 7, + 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(1956), 1, + ACTIONS(1041), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(898), 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(902), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1958), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(1962), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2139), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, - anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2222), 1, - anon_sym_COMMA, - ACTIONS(2130), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2145), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2163), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2303), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2137), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58961] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [64370] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2222), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2130), 2, + ACTIONS(2376), 1, + anon_sym_RBRACK, + STATE(1349), 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(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59057] = 3, - ACTIONS(1203), 1, + [64472] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2378), 1, + sym__automatic_semicolon, + STATE(1350), 1, sym_comment, - ACTIONS(2086), 13, + ACTIONS(999), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(906), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -108215,14 +114179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2088), 25, - sym__automatic_semicolon, + ACTIONS(910), 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, @@ -108241,79 +114201,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59103] = 28, - ACTIONS(1203), 1, + [64528] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2380), 1, + sym__automatic_semicolon, + STATE(1351), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(1053), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(914), 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(918), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1958), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1960), 1, anon_sym_DOT, - ACTIONS(1962), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2139), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, - anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2222), 1, - anon_sym_COMMA, - ACTIONS(2130), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2145), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2153), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2163), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2137), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59199] = 3, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [64584] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2382), 1, + sym__automatic_semicolon, + STATE(1352), 1, sym_comment, - ACTIONS(2094), 13, + ACTIONS(1031), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(977), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -108326,14 +114277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2096), 25, - sym__automatic_semicolon, + ACTIONS(981), 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, @@ -108352,83 +114299,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59245] = 27, - ACTIONS(1203), 1, + [64640] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, + anon_sym_EQ, + STATE(1353), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1835), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + 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), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2209), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59338] = 5, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [64696] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1354), 1, sym_comment, - ACTIONS(1750), 1, - anon_sym_EQ, - ACTIONS(1799), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1707), 13, + ACTIONS(1981), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -108441,10 +114370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 20, + ACTIONS(1983), 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, @@ -108462,479 +114395,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59387] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [64748] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1984), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2309), 1, + ACTIONS(2384), 1, anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1355), 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59482] = 27, - ACTIONS(1203), 1, + [64850] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2386), 1, + sym__automatic_semicolon, + STATE(1356), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_AMP_AMP, - ACTIONS(2317), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(1011), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(961), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2323), 1, anon_sym_AMP, - ACTIONS(2325), 1, - anon_sym_CARET, - ACTIONS(2327), 1, anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2102), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59575] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(965), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2016), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2339), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59668] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + [64906] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2388), 1, + sym__automatic_semicolon, + STATE(1357), 1, + sym_comment, + ACTIONS(1035), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(993), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2345), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59763] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(997), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2347), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59856] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_AMP_AMP, - ACTIONS(2317), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + [64962] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1358), 1, + sym_comment, + ACTIONS(2097), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2323), 1, anon_sym_AMP, - ACTIONS(2325), 1, - anon_sym_CARET, - ACTIONS(2327), 1, anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2012), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59949] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(2099), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2004), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2339), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60042] = 5, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65014] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1359), 1, sym_comment, - ACTIONS(2349), 1, - anon_sym_LPAREN, - ACTIONS(2352), 1, - anon_sym_COLON, - ACTIONS(2120), 13, + ACTIONS(1921), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -108947,11 +114634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(2122), 22, + ACTIONS(1923), 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, @@ -108970,2234 +114659,2333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60091] = 27, - ACTIONS(1203), 1, + [65066] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1360), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2089), 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(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, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1886), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65118] = 8, + 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, + sym_comment, + ACTIONS(2149), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 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(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2135), 2, + ACTIONS(2151), 23, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, + anon_sym_LPAREN, + 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, - [60184] = 27, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65176] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1362), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(2149), 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(2151), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(1922), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65228] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1363), 1, + sym_comment, + ACTIONS(969), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 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(2337), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(973), 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(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65280] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1364), 1, + sym_comment, + ACTIONS(1933), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 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, - [60277] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65332] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1998), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(2390), 1, + anon_sym_RPAREN, + STATE(1365), 1, + sym_comment, + STATE(2049), 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(2321), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60370] = 27, - ACTIONS(1203), 1, + [65434] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1366), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(993), 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(997), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(1970), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65486] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1367), 1, + sym_comment, + ACTIONS(977), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 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(2337), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(981), 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(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65538] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1368), 1, + sym_comment, + ACTIONS(1929), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1931), 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, - [60463] = 28, - ACTIONS(1203), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [65590] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1369), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(2043), 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(2045), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 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, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + [65642] = 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(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1984), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2354), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + ACTIONS(2392), 1, + anon_sym_RBRACE, + STATE(1370), 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60558] = 28, - ACTIONS(1203), 1, + [65744] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1371), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1925), 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(1927), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1831), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 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, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + [65796] = 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(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1984), 1, + ACTIONS(2291), 1, anon_sym_COMMA, - ACTIONS(2356), 1, - anon_sym_RBRACE, - ACTIONS(1886), 2, + ACTIONS(2394), 1, + anon_sym_RBRACK, + STATE(1372), 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(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60653] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [65898] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1373), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1985), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2358), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60746] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [65995] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2360), 1, - anon_sym_RBRACK, - ACTIONS(1886), 2, + STATE(1374), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + ACTIONS(2430), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60841] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [66092] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2027), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2362), 1, - anon_sym_RBRACE, - ACTIONS(1886), 2, + STATE(1375), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60936] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2364), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1376), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2029), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61031] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2366), 1, - anon_sym_LPAREN, - ACTIONS(2369), 1, - anon_sym_COLON, - ACTIONS(1707), 13, - anon_sym_STAR, + ACTIONS(2398), 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, - anon_sym_DASH_DASH, - ACTIONS(1709), 22, - 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(2420), 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_BQUOTE, - [61080] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [66278] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2371), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1377), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1923), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61175] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [66375] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2373), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1378), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2027), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + 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, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61270] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [66452] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2375), 1, + ACTIONS(2432), 1, anon_sym_SEMI, - ACTIONS(2377), 1, + ACTIONS(2434), 1, sym__automatic_semicolon, - ACTIONS(2130), 2, + STATE(1379), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61365] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [66551] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1380), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2143), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61460] = 25, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [66648] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + ACTIONS(2436), 1, + anon_sym_SEMI, + ACTIONS(2438), 1, + sym__automatic_semicolon, + STATE(1381), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 4, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - [61549] = 19, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [66747] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2319), 1, + ACTIONS(2206), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2331), 1, + 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(2333), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + ACTIONS(2440), 1, + anon_sym_SEMI, + ACTIONS(2442), 1, + sym__automatic_semicolon, + STATE(1382), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1948), 4, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 9, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [61626] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1948), 12, - anon_sym_STAR, + ACTIONS(2204), 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(1950), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(2226), 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, - [61689] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [66846] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1383), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1939), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2381), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61782] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [66943] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + 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(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2383), 2, + ACTIONS(2444), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61875] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67040] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2385), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1385), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61970] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + ACTIONS(2025), 4, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + [67133] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2387), 1, - anon_sym_SEMI, - ACTIONS(2389), 1, - sym__automatic_semicolon, - ACTIONS(2130), 2, + STATE(1386), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62065] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67230] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2391), 1, - anon_sym_RBRACK, - ACTIONS(1886), 2, + STATE(1387), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + ACTIONS(2257), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62160] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67327] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(1886), 2, + STATE(1388), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2033), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62255] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [67424] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(2130), 2, + STATE(1389), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2395), 2, + ACTIONS(2446), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1329), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62348] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67521] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2397), 1, - anon_sym_RBRACK, - ACTIONS(1886), 2, + ACTIONS(2448), 1, + anon_sym_SEMI, + ACTIONS(2450), 1, + sym__automatic_semicolon, + STATE(1390), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62443] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67620] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, + ACTIONS(1880), 1, + anon_sym_BQUOTE, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + STATE(1391), 1, + sym_comment, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + STATE(1142), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2399), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2025), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62538] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67687] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2027), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2401), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1392), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62633] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2403), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1393), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62728] = 14, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2027), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1950), 14, + ACTIONS(2025), 9, 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, - [62795] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67855] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(2319), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2331), 1, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, + STATE(1394), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 6, + ACTIONS(2025), 6, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [62880] = 22, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [67944] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2339), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1395), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2027), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 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, - [62963] = 21, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2319), 1, anon_sym_GT_GT, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(1948), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 7, + ACTIONS(2025), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [63044] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_instanceof, + [68011] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2405), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1396), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63139] = 15, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(2025), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [68102] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2331), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, + STATE(1397), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2329), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1948), 8, + ACTIONS(2027), 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(1950), 14, + ACTIONS(2025), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -111212,167 +117000,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63208] = 24, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [68173] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(2319), 1, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + STATE(1398), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + ACTIONS(2452), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 5, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [63295] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [68270] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2319), 1, + ACTIONS(2400), 1, + anon_sym_AMP_AMP, + ACTIONS(2402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, + ACTIONS(2426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2428), 1, + sym__ternary_qmark, + STATE(1399), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2145), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [63380] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [68367] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2333), 1, + ACTIONS(2416), 1, + anon_sym_PERCENT, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - STATE(1131), 2, + STATE(1400), 1, + sym_comment, + ACTIONS(1878), 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, sym_template_string, sym_arguments, - ACTIONS(1948), 12, - anon_sym_STAR, + 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(1950), 15, + ACTIONS(2025), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -111381,1468 +117189,1407 @@ 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, - [63443] = 17, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [68440] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(2319), 1, + ACTIONS(2206), 1, + anon_sym_AMP_AMP, + ACTIONS(2208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(2331), 1, + 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(2333), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(2311), 2, + ACTIONS(2232), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2234), 1, + sym__ternary_qmark, + ACTIONS(2454), 1, + anon_sym_SEMI, + ACTIONS(2456), 1, + sym__automatic_semicolon, + STATE(1401), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1131), 2, + ACTIONS(2228), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2230), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1948), 7, + 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, + [68539] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2458), 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(1950), 12, + ACTIONS(1979), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63516] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + 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(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2407), 1, - anon_sym_SEMI, - ACTIONS(2409), 1, - sym__automatic_semicolon, - ACTIONS(2130), 2, + STATE(1403), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2027), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63611] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2411), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1404), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + ACTIONS(2463), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63706] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [68776] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2465), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2468), 1, + anon_sym_COLON, + STATE(1405), 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), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2413), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63801] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [68831] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1996), 2, + STATE(1406), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2125), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2311), 2, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63894] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [68928] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2034), 2, + STATE(1407), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2153), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2311), 2, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63987] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [69025] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + STATE(1408), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2087), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64082] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [69122] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2206), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2208), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2210), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2214), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2216), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2218), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2222), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2224), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2232), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2234), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2417), 1, - anon_sym_COLON, - ACTIONS(1886), 2, + STATE(1409), 1, + sym_comment, + ACTIONS(2015), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2202), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2212), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2220), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2228), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2230), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + ACTIONS(2470), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2204), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2226), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64177] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [69219] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2419), 1, - anon_sym_RBRACK, - ACTIONS(1886), 2, + STATE(1410), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64272] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [69316] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2141), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2147), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2151), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2421), 1, - anon_sym_SEMI, - ACTIONS(2423), 1, - sym__automatic_semicolon, - ACTIONS(2130), 2, + STATE(1411), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2083), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64367] = 28, - ACTIONS(1203), 1, + [69413] = 7, + 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(1829), 1, + ACTIONS(1854), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + 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), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2425), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64462] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [69468] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(1984), 1, - anon_sym_COMMA, - ACTIONS(2427), 1, - anon_sym_RPAREN, - ACTIONS(1886), 2, + ACTIONS(2472), 1, + anon_sym_COLON, + STATE(1413), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64557] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [69564] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_AMP_AMP, - ACTIONS(2317), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, - anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(2478), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2124), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, + STATE(1414), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2339), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2027), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + 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, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64650] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [69636] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2125), 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(2317), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, + ACTIONS(2504), 1, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, + ACTIONS(2506), 1, sym__ternary_qmark, - ACTIONS(2096), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, + STATE(1415), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64743] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [69732] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2484), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(1888), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(2311), 2, + STATE(1416), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + 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(2335), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64836] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + [69824] = 20, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, - anon_sym_DASH_DASH, - ACTIONS(1968), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, - anon_sym_GT_GT, - ACTIONS(2147), 1, - anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, - anon_sym_PIPE, - ACTIONS(2155), 1, + ACTIONS(2478), 1, anon_sym_PERCENT, - ACTIONS(2157), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2429), 1, - anon_sym_SEMI, - ACTIONS(2431), 1, - sym__automatic_semicolon, - ACTIONS(2130), 2, + ACTIONS(2488), 1, + anon_sym_GT_GT, + STATE(1417), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2145), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2153), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2163), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1329), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2137), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2159), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64931] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1956), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1958), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1960), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1964), 1, + ACTIONS(1880), 1, + anon_sym_BQUOTE, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + STATE(1418), 1, + sym_comment, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1966), 1, anon_sym_DASH_DASH, - ACTIONS(1968), 1, - anon_sym_BQUOTE, - ACTIONS(2139), 1, - anon_sym_AMP_AMP, - ACTIONS(2141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2143), 1, + STATE(1142), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2147), 1, anon_sym_AMP, - ACTIONS(2149), 1, - anon_sym_CARET, - ACTIONS(2151), 1, anon_sym_PIPE, - ACTIONS(2155), 1, - anon_sym_PERCENT, - ACTIONS(2157), 1, - anon_sym_STAR_STAR, - ACTIONS(2165), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2167), 1, - sym__ternary_qmark, - ACTIONS(2130), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2145), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2153), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2161), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2163), 2, + 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, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2433), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2137), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2159), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65024] = 27, - ACTIONS(1203), 1, + [69970] = 8, + 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(1829), 1, + 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, anon_sym_LPAREN, - ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2016), 1, - anon_sym_of, - ACTIONS(2439), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, - anon_sym_GT_GT, - ACTIONS(2447), 1, - anon_sym_AMP, - ACTIONS(2449), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2451), 1, - anon_sym_PIPE, - ACTIONS(2455), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, - sym__ternary_qmark, - ACTIONS(2435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2463), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2437), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65116] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(2443), 1, + [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, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2447), 1, anon_sym_AMP, - ACTIONS(2449), 1, - anon_sym_CARET, - ACTIONS(2451), 1, anon_sym_PIPE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2437), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1950), 5, + ACTIONS(1894), 21, sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [65200] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, anon_sym_DOT, - ACTIONS(1835), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2469), 1, - anon_sym_COLON, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2339), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65292] = 28, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [70082] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2215), 1, + ACTIONS(2197), 1, anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2484), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2504), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2506), 1, sym__ternary_qmark, - ACTIONS(2471), 1, + ACTIONS(2508), 1, anon_sym_in, - ACTIONS(2435), 2, + STATE(1421), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2437), 2, + ACTIONS(2476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2482), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2445), 2, + ACTIONS(2490), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65386] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [70180] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1892), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(1894), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(1900), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(1902), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(1904), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1908), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(1910), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(1918), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2474), 1, - anon_sym_RBRACK, - ACTIONS(1886), 2, + ACTIONS(2511), 1, + anon_sym_LBRACE, + STATE(1422), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1898), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1906), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1914), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1916), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1890), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1912), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65478] = 6, - ACTIONS(1203), 1, + [70276] = 15, + 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(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + STATE(1423), 1, sym_comment, - ACTIONS(1773), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - anon_sym_RBRACK, - ACTIONS(1788), 1, - anon_sym_EQ, - ACTIONS(1707), 13, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, 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, @@ -112851,1898 +118598,2051 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 20, + ACTIONS(2025), 13, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [65528] = 27, - ACTIONS(1203), 1, + [70346] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(868), 1, + anon_sym_EQ, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1901), 1, + anon_sym_RBRACK, + ACTIONS(2347), 1, + anon_sym_COMMA, + STATE(1424), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_AMP_AMP, - ACTIONS(2317), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(866), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(2323), 1, anon_sym_AMP, - ACTIONS(2325), 1, - anon_sym_CARET, - ACTIONS(2327), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + 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, - ACTIONS(2333), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2476), 1, - anon_sym_COLON, - ACTIONS(2311), 2, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [70402] = 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(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(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65620] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + 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(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2317), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2331), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2333), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2341), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2478), 1, - anon_sym_COLON, - ACTIONS(2311), 2, + ACTIONS(2513), 1, + anon_sym_RBRACK, + STATE(1426), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65712] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [70586] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1922), 1, - anon_sym_of, - ACTIONS(2439), 1, - anon_sym_AMP_AMP, - ACTIONS(2441), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, - anon_sym_GT_GT, - ACTIONS(2447), 1, - anon_sym_AMP, - ACTIONS(2449), 1, - anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2027), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(2478), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, - sym__ternary_qmark, - ACTIONS(2435), 2, + ACTIONS(2488), 1, + anon_sym_GT_GT, + ACTIONS(2492), 1, + anon_sym_AMP, + STATE(1427), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65804] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1998), 1, - anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + ACTIONS(2515), 1, + anon_sym_COLON, + STATE(1428), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65896] = 25, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [70768] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2439), 1, + ACTIONS(1923), 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(2441), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2435), 2, + ACTIONS(2504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2506), 1, + sym__ternary_qmark, + STATE(1429), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1950), 3, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65984] = 19, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [70864] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2443), 1, - anon_sym_GT_GT, - ACTIONS(2455), 1, + ACTIONS(2029), 1, + anon_sym_of, + ACTIONS(2478), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(2435), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2437), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2459), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1948), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1950), 8, - sym__ternary_qmark, - 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, + anon_sym_AMP, + ACTIONS(2494), 1, anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2496), 1, + anon_sym_PIPE, + ACTIONS(2504), 1, anon_sym_QMARK_QMARK, - [66060] = 12, - ACTIONS(1203), 1, + ACTIONS(2506), 1, + sym__ternary_qmark, + STATE(1430), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 12, + ACTIONS(2474), 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(2476), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1950), 14, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2490), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2500), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [66122] = 14, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2435), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(1948), 10, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1950), 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(2498), 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, - [66188] = 23, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [70960] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(2443), 1, + 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(2447), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2435), 2, + ACTIONS(2496), 1, + anon_sym_PIPE, + ACTIONS(2504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2506), 1, + sym__ternary_qmark, + STATE(1431), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 5, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [66272] = 22, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71056] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1948), 1, - anon_sym_PIPE, - ACTIONS(2443), 1, - anon_sym_GT_GT, - ACTIONS(2447), 1, - anon_sym_AMP, - ACTIONS(2455), 1, + ACTIONS(1939), 1, + anon_sym_of, + ACTIONS(2478), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(2435), 2, + 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(1432), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [66354] = 21, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71152] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2443), 1, - anon_sym_GT_GT, - ACTIONS(2455), 1, + ACTIONS(2083), 1, + anon_sym_of, + ACTIONS(2478), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(1948), 2, + 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(2435), 2, + ACTIONS(2504), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2506), 1, + sym__ternary_qmark, + STATE(1433), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [66434] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71248] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1970), 1, - anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(1943), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(1945), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(1947), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(1951), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(1955), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(1959), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(1961), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(1971), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + ACTIONS(2517), 1, + anon_sym_RBRACK, + STATE(1434), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, + ACTIONS(1949), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(1957), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(1965), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(1967), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(1941), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(1963), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66526] = 15, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, + [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_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2435), 2, + anon_sym_COMMA, + STATE(1435), 1, + sym_comment, + ACTIONS(1755), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2453), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 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(1950), 13, + ACTIONS(1757), 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, - [66594] = 24, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [71400] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2439), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2443), 1, + ACTIONS(2402), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2435), 2, + ACTIONS(2426), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2428), 1, + sym__ternary_qmark, + ACTIONS(2519), 1, + anon_sym_COLON, + STATE(1436), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1950), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [66680] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71496] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2457), 1, + ACTIONS(1985), 1, + anon_sym_of, + ACTIONS(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1948), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1950), 14, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2490), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + 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_QMARK_QMARK, anon_sym_instanceof, - [66742] = 17, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71592] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2443), 1, - anon_sym_GT_GT, - ACTIONS(2455), 1, + ACTIONS(2087), 1, + anon_sym_of, + ACTIONS(2478), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(2435), 2, + 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(1438), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1131), 2, + 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(1948), 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(1950), 11, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2498), 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, - [66814] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71688] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(1996), 1, + ACTIONS(2153), 1, anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2484), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2504), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2506), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + STATE(1439), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66906] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71784] = 22, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2034), 1, - anon_sym_of, - ACTIONS(2439), 1, - anon_sym_AMP_AMP, - ACTIONS(2441), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + STATE(1440), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2027), 2, anon_sym_AMP, - ACTIONS(2449), 1, - anon_sym_CARET, - ACTIONS(2451), 1, anon_sym_PIPE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, - sym__ternary_qmark, - ACTIONS(2435), 2, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66998] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(2025), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [71868] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2143), 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(2317), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, + ACTIONS(2504), 1, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, + ACTIONS(2506), 1, sym__ternary_qmark, - ACTIONS(2480), 1, - anon_sym_LBRACE, - ACTIONS(2311), 2, + STATE(1441), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67090] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [71964] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2004), 1, - anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + ACTIONS(2521), 1, + anon_sym_COLON, + STATE(1442), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67182] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [72060] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2012), 1, + ACTIONS(2145), 1, anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2484), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2504), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2506), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + STATE(1443), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67274] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [72156] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2124), 1, - anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + ACTIONS(2523), 1, + anon_sym_COLON, + STATE(1444), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67366] = 6, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1857), 1, - anon_sym_RBRACK, - ACTIONS(2248), 1, - anon_sym_COMMA, - ACTIONS(822), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 20, - sym__ternary_qmark, + [72252] = 18, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_BQUOTE, + ACTIONS(2478), 1, anon_sym_PERCENT, + ACTIONS(2480), 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_BQUOTE, - [67416] = 6, - ACTIONS(1203), 1, + ACTIONS(2488), 1, + anon_sym_GT_GT, + STATE(1445), 1, sym_comment, - ACTIONS(1877), 1, - anon_sym_RBRACK, - ACTIONS(1880), 1, - anon_sym_EQ, - ACTIONS(2237), 1, - anon_sym_COMMA, - ACTIONS(1873), 13, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 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(2476), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1875), 20, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2490), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_BQUOTE, - [67466] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1864), 1, - anon_sym_RBRACK, - ACTIONS(1867), 1, - anon_sym_EQ, - ACTIONS(2243), 1, - anon_sym_COMMA, - ACTIONS(1860), 13, - anon_sym_STAR, + 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, - anon_sym_DASH_DASH, - ACTIONS(1862), 20, + ACTIONS(2025), 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_BQUOTE, - [67516] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [72328] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, + ACTIONS(2075), 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(2317), 1, + ACTIONS(2486), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, + ACTIONS(2504), 1, anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, + ACTIONS(2506), 1, sym__ternary_qmark, - ACTIONS(2482), 1, - anon_sym_COLON, - ACTIONS(2311), 2, + STATE(1446), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67608] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [72424] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, + ACTIONS(1880), 1, + anon_sym_BQUOTE, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + STATE(1447), 1, + sym_comment, + ACTIONS(1878), 2, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, + STATE(1142), 2, + sym_template_string, + sym_arguments, + ACTIONS(2027), 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, + sym__ternary_qmark, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(2317), 1, anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [72490] = 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(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2323), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2325), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2327), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2484), 1, - anon_sym_COLON, - ACTIONS(2311), 2, + STATE(1448), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2337), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2339), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2313), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2335), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67700] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(2025), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [72578] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2096), 1, - anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2478), 1, + anon_sym_PERCENT, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2484), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2488), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2492), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2494), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2496), 1, anon_sym_PIPE, - ACTIONS(2455), 1, - anon_sym_PERCENT, - ACTIONS(2457), 1, - anon_sym_STAR_STAR, - ACTIONS(2465), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, - sym__ternary_qmark, - ACTIONS(2435), 2, + STATE(1449), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2476), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2490), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2500), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2502), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2482), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2498), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67792] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + ACTIONS(2025), 4, + sym__ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [72668] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1999), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(2001), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(2003), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(2005), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(2007), 1, anon_sym_BQUOTE, - ACTIONS(1888), 1, - anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + STATE(1450), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1303), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67884] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, + [72761] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, anon_sym_LPAREN, - ACTIONS(1831), 1, + ACTIONS(1872), 1, anon_sym_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1874), 1, anon_sym_DOT, - ACTIONS(1835), 1, + ACTIONS(1876), 1, sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, + ACTIONS(1880), 1, anon_sym_BQUOTE, - ACTIONS(2102), 1, - anon_sym_of, - ACTIONS(2439), 1, + ACTIONS(2400), 1, anon_sym_AMP_AMP, - ACTIONS(2441), 1, + ACTIONS(2402), 1, anon_sym_PIPE_PIPE, - ACTIONS(2443), 1, + ACTIONS(2404), 1, anon_sym_GT_GT, - ACTIONS(2447), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2449), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2451), 1, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2455), 1, + ACTIONS(2416), 1, anon_sym_PERCENT, - ACTIONS(2457), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2465), 1, + ACTIONS(2426), 1, anon_sym_QMARK_QMARK, - ACTIONS(2467), 1, + ACTIONS(2428), 1, sym__ternary_qmark, - ACTIONS(2435), 2, + STATE(1451), 1, + sym_comment, + ACTIONS(1878), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2396), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2445), 2, + ACTIONS(2406), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2453), 2, + ACTIONS(2414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2461), 2, + ACTIONS(2422), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2463), 2, + ACTIONS(2424), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(1131), 2, + STATE(1142), 2, sym_template_string, sym_arguments, - ACTIONS(2437), 3, + ACTIONS(2398), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2459), 3, + ACTIONS(2420), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67976] = 27, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(1892), 1, - anon_sym_AMP_AMP, - ACTIONS(1894), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1896), 1, - anon_sym_GT_GT, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1902), 1, - anon_sym_CARET, - ACTIONS(1904), 1, - anon_sym_PIPE, - ACTIONS(1908), 1, - anon_sym_PERCENT, - ACTIONS(1910), 1, - anon_sym_STAR_STAR, - ACTIONS(1918), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1920), 1, - sym__ternary_qmark, - ACTIONS(2486), 1, - anon_sym_RBRACK, - ACTIONS(1886), 2, + [72854] = 28, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(97), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1898), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1906), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1914), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1916), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(1890), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1912), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68068] = 4, - ACTIONS(1203), 1, + 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(2527), 1, + anon_sym_RBRACE, + ACTIONS(2529), 1, + anon_sym_LBRACK, + ACTIONS(2531), 1, + anon_sym_async, + ACTIONS(2533), 1, + anon_sym_AT, + ACTIONS(2535), 1, + anon_sym_static, + STATE(1452), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_EQ, - ACTIONS(1707), 13, + STATE(1520), 1, + aux_sym_export_statement_repeat1, + STATE(1632), 1, + sym_decorator, + STATE(2060), 1, + sym__property_name, + STATE(2061), 1, + aux_sym_object_repeat1, + STATE(2064), 1, + aux_sym_object_pattern_repeat1, + STATE(2775), 1, + sym__destructuring_pattern, + ACTIONS(1312), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2537), 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(2525), 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, + sym_spread_element, + sym_method_definition, + sym_pair, + [72949] = 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(2541), 1, + anon_sym_RBRACE, + ACTIONS(2543), 1, + anon_sym_async, + ACTIONS(2545), 1, + anon_sym_static, + STATE(1453), 1, + sym_comment, + STATE(1520), 1, + aux_sym_export_statement_repeat1, + STATE(1632), 1, + sym_decorator, + STATE(2060), 1, + sym__property_name, + STATE(2061), 1, + aux_sym_object_repeat1, + STATE(2064), 1, + aux_sym_object_pattern_repeat1, + STATE(2775), 1, + sym__destructuring_pattern, + ACTIONS(1312), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2547), 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(2539), 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, + 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, + 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, @@ -114753,11 +120653,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 21, + ACTIONS(872), 21, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -114775,16 +120673,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68113] = 4, - ACTIONS(1203), 1, + [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(2052), 1, - sym_regex_flags, - ACTIONS(2048), 15, + ACTIONS(1892), 11, anon_sym_STAR, - anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114795,9 +120700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_DASH_DASH, - ACTIONS(2050), 19, + ACTIONS(1894), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114815,18 +120718,24 @@ 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, - [68158] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1720), 1, + [73249] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1795), 1, anon_sym_EQ, - ACTIONS(1760), 1, + ACTIONS(1827), 1, anon_sym_in, - ACTIONS(1763), 1, + ACTIONS(1830), 1, anon_sym_of, - ACTIONS(1707), 12, + STATE(1457), 1, + sym_comment, + ACTIONS(1755), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -114838,8 +120747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1709), 20, + ACTIONS(1757), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114859,17 +120767,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68207] = 6, - ACTIONS(824), 1, - anon_sym_EQ, - ACTIONS(1203), 1, + [73304] = 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(2561), 1, + anon_sym_RBRACE, + ACTIONS(2563), 1, + anon_sym_async, + ACTIONS(2565), 1, + anon_sym_static, + STATE(1458), 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(2567), 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(2559), 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, + 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, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2126), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [73494] = 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(2581), 1, + anon_sym_RBRACE, + ACTIONS(2583), 1, + anon_sym_async, + ACTIONS(2585), 1, + anon_sym_static, + STATE(1460), 1, sym_comment, - ACTIONS(2245), 1, + 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(2587), 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(2579), 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, + sym_spread_element, + sym_method_definition, + sym_pair, + [73589] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1917), 1, + anon_sym_EQ, + ACTIONS(2319), 1, anon_sym_in, - ACTIONS(2248), 1, + ACTIONS(2322), 1, anon_sym_of, - ACTIONS(822), 12, + STATE(1461), 1, + sym_comment, + ACTIONS(1910), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -114881,8 +120995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(828), 20, + ACTIONS(1912), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114902,18 +121015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68256] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1880), 1, + [73644] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1864), 1, anon_sym_EQ, - ACTIONS(2234), 1, - anon_sym_in, - ACTIONS(2237), 1, - anon_sym_of, - ACTIONS(1873), 12, + STATE(1462), 1, + sym_comment, + ACTIONS(1755), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114924,10 +121039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1875), 20, + ACTIONS(1757), 22, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -114945,18 +121060,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68305] = 6, - ACTIONS(1203), 1, + [73695] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2013), 1, + sym_regex_flags, + STATE(1463), 1, sym_comment, - ACTIONS(1867), 1, - anon_sym_EQ, - ACTIONS(2243), 1, - anon_sym_of, - ACTIONS(2250), 1, - anon_sym_in, - ACTIONS(1860), 12, + ACTIONS(2009), 14, anon_sym_STAR, + anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114967,8 +121085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DASH_DASH, - ACTIONS(1862), 20, + anon_sym_instanceof, + ACTIONS(2011), 20, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114986,3346 +121104,3288 @@ 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_BQUOTE, - [68354] = 26, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1829), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_LBRACK, - ACTIONS(1833), 1, - anon_sym_DOT, - ACTIONS(1835), 1, - sym_optional_chain, - ACTIONS(1837), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, - anon_sym_DASH_DASH, - ACTIONS(1841), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_AMP_AMP, - ACTIONS(2317), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, - anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2339), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1131), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68443] = 26, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1837), 1, anon_sym_PLUS_PLUS, - ACTIONS(1839), 1, anon_sym_DASH_DASH, - ACTIONS(1956), 1, - anon_sym_LPAREN, - ACTIONS(1958), 1, - anon_sym_LBRACK, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, - sym_optional_chain, - ACTIONS(1968), 1, anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_AMP_AMP, - ACTIONS(2317), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2319), 1, - anon_sym_GT_GT, - ACTIONS(2323), 1, - anon_sym_AMP, - ACTIONS(2325), 1, - anon_sym_CARET, - ACTIONS(2327), 1, - anon_sym_PIPE, - ACTIONS(2331), 1, - anon_sym_PERCENT, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2341), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2343), 1, - sym__ternary_qmark, - ACTIONS(2311), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2321), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2329), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2337), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2339), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1329), 2, - sym_template_string, - sym_arguments, - ACTIONS(2313), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2335), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68532] = 24, + [73746] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(97), 1, anon_sym_STAR, - ACTIONS(95), 1, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(109), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, + ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2490), 1, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(2492), 1, - anon_sym_RBRACE, - ACTIONS(2494), 1, + ACTIONS(2529), 1, anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_async, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2502), 1, + ACTIONS(2591), 1, + anon_sym_RBRACE, + ACTIONS(2593), 1, + anon_sym_async, + ACTIONS(2595), 1, anon_sym_static, - STATE(1515), 1, + STATE(1464), 1, + sym_comment, + STATE(1520), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1632), 1, sym_decorator, - STATE(2017), 1, - aux_sym_object_repeat1, - STATE(2085), 1, + STATE(2060), 1, + sym__property_name, + STATE(2064), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2488), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2498), 2, + STATE(2125), 1, + aux_sym_object_repeat1, + STATE(2775), 1, + sym__destructuring_pattern, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2504), 2, + ACTIONS(2597), 2, anon_sym_get, anon_sym_set, - STATE(1977), 3, + STATE(1727), 2, + sym_object_pattern, + sym_array_pattern, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2589), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(2058), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(2018), 3, + STATE(2126), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(2087), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [68616] = 24, + [73841] = 25, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(97), 1, anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, + ACTIONS(109), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, + ACTIONS(119), 1, aux_sym_method_definition_token1, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2490), 1, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2529), 1, anon_sym_LBRACK, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2508), 1, - anon_sym_RBRACE, - ACTIONS(2510), 1, + ACTIONS(2604), 1, anon_sym_async, - ACTIONS(2512), 1, + ACTIONS(2606), 1, anon_sym_static, - STATE(1515), 1, + STATE(1465), 1, + sym_comment, + STATE(1520), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1632), 1, sym_decorator, - STATE(2082), 1, - aux_sym_object_repeat1, - STATE(2085), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2498), 2, + STATE(2060), 1, + sym__property_name, + STATE(2775), 1, + sym__destructuring_pattern, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2506), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2514), 2, + ACTIONS(2601), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2608), 2, anon_sym_get, anon_sym_set, - STATE(1977), 3, + STATE(1727), 2, + sym_object_pattern, + sym_array_pattern, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2599), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(2236), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(2073), 3, + STATE(2249), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(2087), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [68700] = 24, + [73928] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, - aux_sym_method_definition_token1, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, - anon_sym_LBRACK, - ACTIONS(2500), 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(2518), 1, + ACTIONS(2612), 1, + anon_sym_STAR, + ACTIONS(2614), 1, anon_sym_RBRACE, - ACTIONS(2520), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, + anon_sym_LBRACK, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2522), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - STATE(1515), 1, + ACTIONS(2630), 1, + aux_sym_method_definition_token1, + STATE(1466), 1, + sym_comment, + STATE(1486), 1, + aux_sym_class_body_repeat1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1559), 1, + sym_glimmer_template, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(2017), 1, - aux_sym_object_repeat1, - STATE(2085), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2498), 2, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, + sym_glimmer_opening_tag, + STATE(2174), 1, + sym_field_definition, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2516), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2524), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1977), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2018), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2087), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [68784] = 24, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74015] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 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, anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, - aux_sym_method_definition_token1, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2528), 1, - anon_sym_RBRACE, - ACTIONS(2530), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2532), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - STATE(1515), 1, + ACTIONS(2630), 1, + aux_sym_method_definition_token1, + ACTIONS(2634), 1, + anon_sym_RBRACE, + STATE(1467), 1, + sym_comment, + STATE(1480), 1, + aux_sym_class_body_repeat1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1559), 1, + sym_glimmer_template, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(2082), 1, - aux_sym_object_repeat1, - STATE(2085), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2498), 2, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, + sym_glimmer_opening_tag, + STATE(2174), 1, + sym_field_definition, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2526), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2534), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1977), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2073), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2087), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [68868] = 24, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74102] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 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, anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, - aux_sym_method_definition_token1, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2538), 1, - anon_sym_RBRACE, - ACTIONS(2540), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2542), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - STATE(1515), 1, + ACTIONS(2630), 1, + aux_sym_method_definition_token1, + ACTIONS(2636), 1, + anon_sym_RBRACE, + STATE(1468), 1, + sym_comment, + STATE(1484), 1, + aux_sym_class_body_repeat1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1559), 1, + sym_glimmer_template, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(2017), 1, - aux_sym_object_repeat1, - STATE(2085), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2498), 2, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, + sym_glimmer_opening_tag, + STATE(2174), 1, + sym_field_definition, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2536), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2544), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1977), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2018), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2087), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [68952] = 24, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74189] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 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, anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, - aux_sym_method_definition_token1, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2548), 1, - anon_sym_RBRACE, - ACTIONS(2550), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2552), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - STATE(1515), 1, + ACTIONS(2630), 1, + aux_sym_method_definition_token1, + ACTIONS(2638), 1, + anon_sym_RBRACE, + STATE(1469), 1, + sym_comment, + STATE(1470), 1, + aux_sym_class_body_repeat1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1559), 1, + sym_glimmer_template, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(2017), 1, - aux_sym_object_repeat1, - STATE(2085), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2498), 2, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, + sym_glimmer_opening_tag, + STATE(2174), 1, + sym_field_definition, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2546), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2554), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1977), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2018), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2087), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [69036] = 24, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74276] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 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, anon_sym_STAR, - ACTIONS(95), 1, - anon_sym_COMMA, - ACTIONS(103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, - aux_sym_method_definition_token1, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2558), 1, - anon_sym_RBRACE, - ACTIONS(2560), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2562), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - STATE(1515), 1, + ACTIONS(2630), 1, + aux_sym_method_definition_token1, + ACTIONS(2640), 1, + anon_sym_RBRACE, + STATE(1470), 1, + sym_comment, + STATE(1471), 1, + aux_sym_class_body_repeat1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1559), 1, + sym_glimmer_template, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(2017), 1, - aux_sym_object_repeat1, - STATE(2085), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2498), 2, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, + sym_glimmer_opening_tag, + STATE(2174), 1, + sym_field_definition, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2556), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2564), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1977), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2018), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2087), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [69120] = 21, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74363] = 26, ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2645), 1, anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(113), 1, - aux_sym_method_definition_token1, - ACTIONS(1304), 1, + ACTIONS(2648), 1, + anon_sym_RBRACE, + ACTIONS(2650), 1, + anon_sym_SEMI, + ACTIONS(2653), 1, + anon_sym_LBRACK, + ACTIONS(2656), 1, + anon_sym_LTtemplate_GT, + ACTIONS(2659), 1, + anon_sym_async, + ACTIONS(2662), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(2665), 1, anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, - anon_sym_LBRACK, - ACTIONS(2500), 1, + ACTIONS(2671), 1, anon_sym_AT, - ACTIONS(2571), 1, - anon_sym_async, - ACTIONS(2573), 1, + ACTIONS(2674), 1, anon_sym_static, - STATE(1515), 1, + ACTIONS(2677), 1, + aux_sym_method_definition_token1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1559), 1, + sym_glimmer_template, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - ACTIONS(2498), 2, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, + sym_glimmer_opening_tag, + STATE(2174), 1, + sym_field_definition, + ACTIONS(2668), 2, sym_number, sym_private_property_identifier, - ACTIONS(2566), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2568), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2575), 2, + ACTIONS(2680), 2, anon_sym_get, anon_sym_set, - STATE(2087), 3, + STATE(1471), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(2168), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2170), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [69196] = 23, + ACTIONS(2642), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74448] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2581), 1, - anon_sym_RBRACE, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - STATE(1475), 1, + ACTIONS(2683), 1, + anon_sym_RBRACE, + STATE(1472), 1, + sym_comment, + STATE(1483), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69271] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74535] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2595), 1, + ACTIONS(2685), 1, anon_sym_RBRACE, - STATE(1461), 1, + STATE(1473), 1, + sym_comment, + STATE(1479), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69346] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74622] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2597), 1, + ACTIONS(2687), 1, anon_sym_RBRACE, - STATE(1478), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1474), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69421] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74709] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2599), 1, + ACTIONS(2689), 1, anon_sym_RBRACE, - STATE(1476), 1, + STATE(1475), 1, + sym_comment, + STATE(1477), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69496] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74796] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2601), 1, + ACTIONS(2691), 1, anon_sym_RBRACE, - STATE(1461), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1476), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69571] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74883] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(2606), 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, anon_sym_STAR, - ACTIONS(2609), 1, - anon_sym_RBRACE, - ACTIONS(2611), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, - anon_sym_LTtemplate_GT, - ACTIONS(2617), 1, - anon_sym_async, ACTIONS(2620), 1, + anon_sym_async, + ACTIONS(2622), 1, anon_sym_DQUOTE, - ACTIONS(2623), 1, + ACTIONS(2624), 1, anon_sym_SQUOTE, - ACTIONS(2629), 1, - anon_sym_AT, - ACTIONS(2632), 1, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2635), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - STATE(1461), 1, + ACTIONS(2693), 1, + anon_sym_RBRACE, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1477), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2603), 2, - anon_sym_export, - sym_identifier, ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2638), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69646] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [74970] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2641), 1, + ACTIONS(2695), 1, anon_sym_RBRACE, - STATE(1463), 1, + STATE(1476), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1478), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69721] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75057] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2643), 1, + ACTIONS(2697), 1, anon_sym_RBRACE, - STATE(1461), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1479), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69796] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75144] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2645), 1, + ACTIONS(2699), 1, anon_sym_RBRACE, - STATE(1466), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1480), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69871] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75231] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2647), 1, + ACTIONS(2701), 1, anon_sym_RBRACE, - STATE(1471), 1, + STATE(1481), 1, + sym_comment, + STATE(1488), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [69946] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75318] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2649), 1, + ACTIONS(2703), 1, anon_sym_RBRACE, - STATE(1461), 1, + STATE(1474), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1482), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70021] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75405] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2651), 1, + ACTIONS(2705), 1, anon_sym_RBRACE, - STATE(1468), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1483), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70096] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75492] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2653), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - STATE(1461), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1484), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70171] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75579] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2655), 1, + ACTIONS(2709), 1, anon_sym_RBRACE, - STATE(1457), 1, + STATE(1485), 1, + sym_comment, + STATE(1487), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70246] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75666] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2657), 1, + ACTIONS(2711), 1, anon_sym_RBRACE, - STATE(1461), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1486), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70321] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75753] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2659), 1, + ACTIONS(2713), 1, anon_sym_RBRACE, - STATE(1461), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1487), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70396] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75840] = 27, ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(59), 1, anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, + ACTIONS(2612), 1, anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2616), 1, + anon_sym_SEMI, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2620), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2628), 1, anon_sym_static, - ACTIONS(2591), 1, + ACTIONS(2630), 1, aux_sym_method_definition_token1, - ACTIONS(2661), 1, + ACTIONS(2715), 1, anon_sym_RBRACE, - STATE(1474), 1, + STATE(1471), 1, aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1488), 1, + sym_comment, + STATE(1526), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, + STATE(1559), 1, sym_glimmer_template, - STATE(1647), 1, + STATE(1561), 1, + sym_class_static_block, + STATE(1564), 1, + sym_method_definition, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, + STATE(1765), 1, + sym__property_name, + STATE(1877), 1, sym_glimmer_opening_tag, - STATE(2294), 1, + STATE(2174), 1, sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2632), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70471] = 23, + ACTIONS(2610), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [75927] = 18, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(892), 1, + anon_sym_DOT_DOT_DOT, + 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(2719), 1, + anon_sym_COMMA, + ACTIONS(2721), 1, + anon_sym_RBRACE, + STATE(1489), 1, sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, + STATE(2124), 1, + aux_sym_object_pattern_repeat1, + STATE(2775), 1, + sym__destructuring_pattern, + STATE(2807), 1, + sym__property_name, + ACTIONS(1312), 2, + sym_number, + sym_private_property_identifier, + STATE(1727), 2, + sym_object_pattern, + sym_array_pattern, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + STATE(2127), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(2717), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [75993] = 21, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(97), 1, + anon_sym_STAR, + ACTIONS(119), 1, + aux_sym_method_definition_token1, + ACTIONS(1069), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1821), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2579), 1, - anon_sym_STAR, - ACTIONS(2583), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2585), 1, + ACTIONS(2729), 1, anon_sym_async, - ACTIONS(2589), 1, + ACTIONS(2731), 1, anon_sym_static, - ACTIONS(2591), 1, - aux_sym_method_definition_token1, - ACTIONS(2663), 1, - anon_sym_RBRACE, - STATE(1470), 1, - aux_sym_class_body_repeat1, - STATE(1509), 1, + STATE(1490), 1, + sym_comment, + STATE(1520), 1, aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, - sym_glimmer_template, - STATE(1647), 1, + STATE(1632), 1, sym_decorator, - STATE(1878), 1, - sym_glimmer_opening_tag, - STATE(2294), 1, - sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2593), 2, - anon_sym_get, - anon_sym_set, - STATE(1731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [70546] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2579), 1, - anon_sym_STAR, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2585), 1, - anon_sym_async, - ACTIONS(2589), 1, - anon_sym_static, - ACTIONS(2591), 1, - aux_sym_method_definition_token1, - ACTIONS(2665), 1, - anon_sym_RBRACE, - STATE(1461), 1, - aux_sym_class_body_repeat1, - STATE(1509), 1, - aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, - sym_glimmer_template, - STATE(1647), 1, - sym_decorator, - STATE(1878), 1, - sym_glimmer_opening_tag, - STATE(2294), 1, - sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2593), 2, - anon_sym_get, - anon_sym_set, - STATE(1731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [70621] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2579), 1, - anon_sym_STAR, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2585), 1, - anon_sym_async, - ACTIONS(2589), 1, - anon_sym_static, - ACTIONS(2591), 1, - aux_sym_method_definition_token1, - ACTIONS(2667), 1, - anon_sym_RBRACE, - STATE(1461), 1, - aux_sym_class_body_repeat1, - STATE(1509), 1, - aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, - sym_glimmer_template, - STATE(1647), 1, - sym_decorator, - STATE(1878), 1, - sym_glimmer_opening_tag, - STATE(2294), 1, - sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2593), 2, - anon_sym_get, - anon_sym_set, - STATE(1731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [70696] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2579), 1, - anon_sym_STAR, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2585), 1, - anon_sym_async, - ACTIONS(2589), 1, - anon_sym_static, - ACTIONS(2591), 1, - aux_sym_method_definition_token1, - ACTIONS(2669), 1, - anon_sym_RBRACE, - STATE(1461), 1, - aux_sym_class_body_repeat1, - STATE(1509), 1, - aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, - sym_glimmer_template, - STATE(1647), 1, - sym_decorator, - STATE(1878), 1, - sym_glimmer_opening_tag, - STATE(2294), 1, - sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2593), 2, - anon_sym_get, - anon_sym_set, - STATE(1731), 3, - sym_string, + STATE(2104), 1, sym__property_name, - sym_computed_property_name, - [70771] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2579), 1, - anon_sym_STAR, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2585), 1, - anon_sym_async, - ACTIONS(2589), 1, - anon_sym_static, - ACTIONS(2591), 1, - aux_sym_method_definition_token1, - ACTIONS(2671), 1, - anon_sym_RBRACE, - STATE(1460), 1, - aux_sym_class_body_repeat1, - STATE(1509), 1, - aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, - sym_glimmer_template, - STATE(1647), 1, - sym_decorator, - STATE(1878), 1, - sym_glimmer_opening_tag, - STATE(2294), 1, - sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2593), 2, - anon_sym_get, - anon_sym_set, - STATE(1731), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [70846] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2579), 1, - anon_sym_STAR, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2585), 1, - anon_sym_async, - ACTIONS(2589), 1, - anon_sym_static, - ACTIONS(2591), 1, - aux_sym_method_definition_token1, - ACTIONS(2673), 1, + ACTIONS(2725), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1461), 1, - aux_sym_class_body_repeat1, - STATE(1509), 1, - aux_sym_export_statement_repeat1, - STATE(1537), 1, - sym_method_definition, - STATE(1578), 1, - sym_class_static_block, - STATE(1579), 1, - sym_glimmer_template, - STATE(1647), 1, - sym_decorator, - STATE(1878), 1, - sym_glimmer_opening_tag, - STATE(2294), 1, - sym_field_definition, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2587), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2593), 2, + ACTIONS(2733), 2, anon_sym_get, anon_sym_set, - STATE(1731), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - [70921] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_STAR, - ACTIONS(113), 1, - aux_sym_method_definition_token1, - ACTIONS(1051), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, - anon_sym_AT, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_async, - ACTIONS(2685), 1, - anon_sym_static, - STATE(1515), 1, - aux_sym_export_statement_repeat1, - STATE(1647), 1, - sym_decorator, - ACTIONS(2675), 2, + ACTIONS(2723), 3, anon_sym_export, + anon_sym_let, sym_identifier, - ACTIONS(2677), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2683), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2687), 2, - anon_sym_get, - anon_sym_set, - STATE(2053), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2168), 3, + STATE(2249), 3, sym_spread_element, sym_method_definition, sym_pair, - [70984] = 14, + [76065] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(948), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(892), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2490), 1, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2529), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2719), 1, anon_sym_COMMA, - ACTIONS(2693), 1, + ACTIONS(2737), 1, anon_sym_RBRACE, - STATE(2016), 1, + STATE(1491), 1, + sym_comment, + STATE(2064), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2695), 2, + STATE(2775), 1, + sym__destructuring_pattern, + STATE(2807), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2019), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(2694), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2766), 3, + STATE(1727), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2689), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [71039] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(948), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, - anon_sym_LBRACK, - ACTIONS(2691), 1, - anon_sym_COMMA, - ACTIONS(2699), 1, - anon_sym_RBRACE, - STATE(2085), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2695), 2, - sym_number, - sym_private_property_identifier, - STATE(1977), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + STATE(2058), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(2694), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2697), 6, + ACTIONS(2735), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [71094] = 12, + [76131] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(948), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(892), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2490), 1, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(2494), 1, + ACTIONS(2529), 1, anon_sym_LBRACK, - ACTIONS(2695), 2, + STATE(1492), 1, + sym_comment, + STATE(2775), 1, + sym__destructuring_pattern, + STATE(2807), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2703), 2, + ACTIONS(2741), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2170), 3, + STATE(1727), 2, + sym_object_pattern, + sym_array_pattern, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + STATE(2236), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(2694), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2766), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2701), 6, + ACTIONS(2739), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [71144] = 16, + [76192] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1312), 1, - anon_sym_RBRACE, - ACTIONS(1321), 1, - anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2745), 1, + anon_sym_RBRACE, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1493), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1316), 3, + 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, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [71200] = 15, + [76255] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1314), 1, - anon_sym_RBRACE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + ACTIONS(2751), 1, + anon_sym_RBRACE, + STATE(1494), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [71254] = 16, + [76318] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1290), 1, + anon_sym_RBRACE, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1314), 1, - anon_sym_RBRACE, - ACTIONS(1321), 1, + ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1495), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1316), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 4, anon_sym_export, + anon_sym_let, sym_identifier, anon_sym_static, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [71310] = 15, + [76383] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(1350), 1, + anon_sym_RBRACE, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2711), 1, - anon_sym_RBRACE, - STATE(1990), 1, + STATE(1496), 1, + sym_comment, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(2114), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [71364] = 15, + [76446] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(1350), 1, + anon_sym_RBRACE, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2713), 1, - anon_sym_RBRACE, - STATE(1990), 1, + STATE(1497), 1, + sym_comment, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(2114), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [71418] = 16, + [76511] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, + ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2711), 1, + ACTIONS(2751), 1, anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1498), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1316), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 4, anon_sym_export, + anon_sym_let, sym_identifier, anon_sym_static, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [71474] = 15, + [76576] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1290), 1, + anon_sym_RBRACE, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2715), 1, - anon_sym_RBRACE, - STATE(1986), 1, + STATE(1499), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - STATE(1990), 1, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [71528] = 15, + [76639] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2717), 1, + ACTIONS(2753), 1, anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1500), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [71582] = 16, + [76702] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1286), 1, - anon_sym_RBRACE, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, - anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(1332), 1, + anon_sym_RBRACE, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1986), 1, + STATE(1501), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - STATE(1990), 1, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1316), 3, + 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, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [71638] = 15, + [76765] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1286), 1, - anon_sym_RBRACE, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(1332), 1, + anon_sym_RBRACE, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1986), 1, + STATE(1502), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - STATE(1990), 1, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [71692] = 16, + [76830] = 18, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, - anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2713), 1, + ACTIONS(2755), 1, anon_sym_RBRACE, - STATE(1990), 1, + STATE(1503), 1, + sym_comment, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(2114), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1316), 3, + 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, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [71748] = 16, + [76893] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, + ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2717), 1, + ACTIONS(2755), 1, anon_sym_RBRACE, - STATE(1990), 1, + STATE(1504), 1, + sym_comment, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(2114), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1316), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 4, anon_sym_export, + anon_sym_let, sym_identifier, anon_sym_static, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [71804] = 16, + [76958] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, + ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_EQ, - ACTIONS(2715), 1, + ACTIONS(2745), 1, anon_sym_RBRACE, - STATE(1986), 1, + ACTIONS(2749), 1, + anon_sym_EQ, + STATE(1505), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - STATE(1990), 1, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1316), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 4, anon_sym_export, + anon_sym_let, sym_identifier, anon_sym_static, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [71860] = 15, + [77023] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1312), 1, - anon_sym_RBRACE, - ACTIONS(2679), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + ACTIONS(2753), 1, + anon_sym_RBRACE, + STATE(1506), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [71914] = 13, + [77088] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2713), 1, + ACTIONS(2753), 1, anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1507), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [71963] = 13, + [77146] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1290), 1, + anon_sym_RBRACE, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1314), 1, - anon_sym_RBRACE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1508), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72012] = 13, + [77204] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1286), 1, - anon_sym_RBRACE, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(1350), 1, + anon_sym_RBRACE, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1986), 1, - aux_sym_object_repeat1, - STATE(1990), 1, + STATE(1509), 1, + sym_comment, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1308), 2, + STATE(2114), 1, + aux_sym_object_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72061] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym_DQUOTE, - ACTIONS(1821), 1, - anon_sym_SQUOTE, - ACTIONS(2583), 1, - anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_STAR, - ACTIONS(2721), 1, - anon_sym_LBRACE, - ACTIONS(2723), 1, - anon_sym_async, - ACTIONS(2729), 1, - sym__automatic_semicolon, - STATE(1564), 1, - sym_statement_block, - ACTIONS(2725), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2577), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - ACTIONS(2707), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(1728), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [72112] = 13, + [77262] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2717), 1, + ACTIONS(2751), 1, anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1510), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72161] = 13, + [77320] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(1332), 1, + anon_sym_RBRACE, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(2711), 1, - anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1511), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72210] = 13, + [77378] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1312), 1, - anon_sym_RBRACE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - STATE(1990), 1, + ACTIONS(2755), 1, + anon_sym_RBRACE, + STATE(1512), 1, + sym_comment, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(2114), 1, aux_sym_object_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72259] = 13, + [77436] = 17, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2618), 1, + anon_sym_LBRACK, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACE, + ACTIONS(2761), 1, + anon_sym_async, + ACTIONS(2765), 1, + sym__automatic_semicolon, + STATE(1513), 1, sym_comment, - ACTIONS(95), 1, + STATE(1553), 1, + sym_statement_block, + STATE(1763), 1, + sym__property_name, + ACTIONS(2626), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2763), 2, + anon_sym_get, + anon_sym_set, + STATE(1961), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2610), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [77496] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(99), 1, anon_sym_COMMA, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, - anon_sym_EQ, - ACTIONS(2715), 1, + ACTIONS(2745), 1, anon_sym_RBRACE, - STATE(1986), 1, + ACTIONS(2749), 1, + anon_sym_EQ, + STATE(1514), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - STATE(1990), 1, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1308), 2, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72308] = 13, + [77554] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, - anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(1308), 2, + STATE(1515), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2731), 2, + ACTIONS(2767), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1316), 3, + 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, - STATE(2186), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [72356] = 12, + [77609] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2709), 1, + ACTIONS(2749), 1, anon_sym_EQ, - ACTIONS(1308), 2, + STATE(1516), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2731), 2, + ACTIONS(2767), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [72402] = 18, + [77666] = 21, ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(115), 1, anon_sym_AT, - ACTIONS(1304), 1, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1316), 1, - sym_identifier, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2734), 1, + ACTIONS(2770), 1, anon_sym_export, - ACTIONS(2736), 1, + ACTIONS(2772), 1, anon_sym_STAR, - ACTIONS(2738), 1, + ACTIONS(2774), 1, anon_sym_class, - ACTIONS(2740), 1, + ACTIONS(2776), 1, anon_sym_async, - ACTIONS(2744), 1, + ACTIONS(2778), 1, anon_sym_static, - ACTIONS(2746), 1, + ACTIONS(2780), 1, aux_sym_method_definition_token1, - ACTIONS(2748), 1, + ACTIONS(2782), 1, anon_sym_get, - ACTIONS(2750), 1, + ACTIONS(2784), 1, anon_sym_set, - STATE(1551), 1, + STATE(1517), 1, + sym_comment, + STATE(1567), 1, aux_sym_export_statement_repeat1, - STATE(1592), 1, + STATE(1595), 1, sym_decorator, - ACTIONS(2742), 2, + STATE(2186), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2130), 3, + ACTIONS(1352), 2, + anon_sym_let, + sym_identifier, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - [72460] = 12, + [77733] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, - anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2765), 1, + sym__automatic_semicolon, + ACTIONS(2786), 1, anon_sym_STAR, - ACTIONS(1308), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(2788), 1, anon_sym_get, + ACTIONS(2790), 1, anon_sym_set, - ACTIONS(2707), 2, + STATE(1518), 1, + sym_comment, + STATE(2614), 1, + sym__property_name, + ACTIONS(1312), 2, + sym_number, + sym_private_property_identifier, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2752), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1316), 3, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - STATE(2186), 3, - sym_string, + [77787] = 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(2765), 1, + sym__automatic_semicolon, + ACTIONS(2792), 1, + anon_sym_STAR, + ACTIONS(2794), 1, + anon_sym_get, + ACTIONS(2796), 1, + anon_sym_set, + STATE(1519), 1, + sym_comment, + STATE(2628), 1, sym__property_name, + ACTIONS(1312), 2, + sym_number, + sym_private_property_identifier, + STATE(2554), 2, + sym_string, sym_computed_property_name, - [72505] = 16, + ACTIONS(2747), 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, + [77841] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1821), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2500), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2583), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2754), 1, + ACTIONS(2772), 1, anon_sym_STAR, - ACTIONS(2756), 1, + ACTIONS(2776), 1, anon_sym_async, - ACTIONS(2760), 1, + ACTIONS(2778), 1, anon_sym_static, - ACTIONS(2762), 1, + ACTIONS(2780), 1, aux_sym_method_definition_token1, - ACTIONS(2764), 1, + ACTIONS(2782), 1, anon_sym_get, - ACTIONS(2766), 1, + ACTIONS(2784), 1, anon_sym_set, - STATE(1566), 1, + STATE(1520), 1, + sym_comment, + STATE(1586), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1632), 1, sym_decorator, - ACTIONS(2577), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2758), 2, + STATE(2186), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(1736), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - [72558] = 13, + ACTIONS(1352), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + [77903] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1821), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2583), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2765), 1, sym__automatic_semicolon, - ACTIONS(2768), 1, + ACTIONS(2798), 1, anon_sym_STAR, - ACTIONS(2770), 1, - anon_sym_async, - ACTIONS(2774), 1, - anon_sym_get, - ACTIONS(2776), 1, - anon_sym_set, - ACTIONS(2772), 2, + STATE(1521), 1, + sym_comment, + STATE(2154), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2577), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - ACTIONS(2707), 3, + ACTIONS(2800), 2, + anon_sym_get, + anon_sym_set, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(1733), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [72605] = 11, + ACTIONS(1352), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [77955] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(2729), 1, - sym__automatic_semicolon, - ACTIONS(2778), 2, + STATE(1522), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2780), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 3, + ACTIONS(2747), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(2567), 3, + anon_sym_COLON, + ACTIONS(2802), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [72648] = 11, + [78007] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, - sym__automatic_semicolon, - ACTIONS(2782), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2784), 2, + ACTIONS(2765), 1, + sym__automatic_semicolon, + STATE(1523), 1, + sym_comment, + STATE(2601), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2786), 2, + ACTIONS(2804), 2, anon_sym_get, anon_sym_set, - ACTIONS(2707), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(2578), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [72691] = 11, + [78059] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, - anon_sym_STAR, - ACTIONS(1308), 2, + ACTIONS(2749), 1, + anon_sym_EQ, + STATE(1524), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2707), 2, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2752), 2, + ACTIONS(2767), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [72734] = 10, + anon_sym_get, + anon_sym_set, + [78109] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(1357), 1, + anon_sym_async, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, - anon_sym_EQ, - ACTIONS(1308), 2, + ACTIONS(2743), 1, + anon_sym_STAR, + STATE(1525), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, + ACTIONS(1359), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2747), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2731), 2, + ACTIONS(2802), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [72775] = 16, + [78163] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2500), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2679), 1, + ACTIONS(2618), 1, anon_sym_LBRACK, - ACTIONS(2736), 1, + ACTIONS(2622), 1, + anon_sym_DQUOTE, + ACTIONS(2624), 1, + anon_sym_SQUOTE, + ACTIONS(2806), 1, anon_sym_STAR, - ACTIONS(2740), 1, + ACTIONS(2808), 1, anon_sym_async, - ACTIONS(2744), 1, + ACTIONS(2810), 1, anon_sym_static, - ACTIONS(2746), 1, + ACTIONS(2812), 1, aux_sym_method_definition_token1, - ACTIONS(2748), 1, + ACTIONS(2814), 1, anon_sym_get, - ACTIONS(2750), 1, + ACTIONS(2816), 1, anon_sym_set, - STATE(1566), 1, + STATE(1526), 1, + sym_comment, + STATE(1586), 1, aux_sym_export_statement_repeat1, - STATE(1647), 1, + STATE(1632), 1, sym_decorator, - ACTIONS(1316), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2742), 2, - sym_number, - sym_private_property_identifier, - STATE(2130), 3, - sym_string, + STATE(1757), 1, sym__property_name, - sym_computed_property_name, - [72828] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, - sym__automatic_semicolon, - ACTIONS(2788), 1, - anon_sym_STAR, - ACTIONS(2792), 1, - anon_sym_get, - ACTIONS(2794), 1, - anon_sym_set, - ACTIONS(2790), 2, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(2594), 3, + STATE(1961), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(2610), 3, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, - anon_sym_static, - [72873] = 12, + [78225] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2618), 1, + anon_sym_LBRACK, + ACTIONS(2622), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(2624), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2765), 1, sym__automatic_semicolon, - ACTIONS(2796), 1, + ACTIONS(2818), 1, anon_sym_STAR, - ACTIONS(2800), 1, + ACTIONS(2820), 1, + anon_sym_async, + ACTIONS(2822), 1, anon_sym_get, - ACTIONS(2802), 1, + ACTIONS(2824), 1, anon_sym_set, - ACTIONS(2798), 2, + STATE(1527), 1, + sym_comment, + STATE(1784), 1, + sym__property_name, + ACTIONS(2626), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 3, + STATE(1961), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(2580), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(2610), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [72918] = 9, + [78281] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2765), 1, sym__automatic_semicolon, - ACTIONS(2784), 2, + STATE(1528), 1, + sym_comment, + STATE(2601), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(2578), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72956] = 9, + [78328] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(1308), 2, + ACTIONS(2765), 1, + sym__automatic_semicolon, + STATE(1529), 1, + sym_comment, + STATE(2616), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2752), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(2747), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [72994] = 3, + [78375] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2826), 1, sym__automatic_semicolon, - ACTIONS(820), 17, - anon_sym_export, - anon_sym_STAR, - anon_sym_RBRACE, - 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, - [73020] = 3, - ACTIONS(3), 1, + STATE(1530), 1, sym_comment, - ACTIONS(2806), 1, - sym__automatic_semicolon, - ACTIONS(880), 17, + ACTIONS(874), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118340,183 +124400,251 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73046] = 9, + [78408] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2765), 1, sym__automatic_semicolon, - ACTIONS(2778), 2, + STATE(1531), 1, + sym_comment, + STATE(2630), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(2567), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(2747), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [73084] = 5, + [78455] = 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(2765), 1, + sym__automatic_semicolon, + STATE(1532), 1, sym_comment, - ACTIONS(2810), 1, + STATE(2629), 1, + sym__property_name, + ACTIONS(1312), 2, + sym_number, + sym_private_property_identifier, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, - ACTIONS(2812), 1, - anon_sym_DOT, - STATE(1601), 1, - sym_arguments, - ACTIONS(2808), 15, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_class, + anon_sym_let, 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, - [73114] = 9, + [78502] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2765), 1, sym__automatic_semicolon, - ACTIONS(2814), 2, + STATE(1533), 1, + sym_comment, + STATE(2617), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(2595), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [73152] = 9, + [78549] = 5, 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(1304), 1, + 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, anon_sym_DQUOTE, - ACTIONS(1306), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2729), 1, - sym__automatic_semicolon, - ACTIONS(2816), 2, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(2707), 3, + 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, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(2596), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(2834), 1, + anon_sym_DOT, + STATE(1535), 1, + sym_comment, + STATE(1625), 1, + sym_arguments, + ACTIONS(2830), 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, + 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, - [73190] = 9, + [78619] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, + ACTIONS(2765), 1, sym__automatic_semicolon, - ACTIONS(2818), 2, + STATE(1536), 1, + sym_comment, + STATE(2154), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2747), 3, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(2583), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [73228] = 9, + [78666] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, - sym__automatic_semicolon, - ACTIONS(2820), 2, + STATE(1537), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2707), 3, + ACTIONS(2747), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(2582), 3, + anon_sym_COLON, + ACTIONS(2802), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [73266] = 2, + [78713] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1538), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2836), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118531,13 +124659,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73289] = 2, + [78743] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1539), 1, sym_comment, - ACTIONS(2824), 17, + ACTIONS(2838), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118552,13 +124685,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73312] = 2, + [78773] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1540), 1, sym_comment, - ACTIONS(2826), 17, + ACTIONS(2840), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118573,13 +124711,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73335] = 2, + [78803] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1541), 1, sym_comment, - ACTIONS(2826), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118594,13 +124737,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73358] = 2, + [78833] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1542), 1, sym_comment, - ACTIONS(2828), 17, + ACTIONS(2844), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118615,13 +124763,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73381] = 2, + [78863] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1543), 1, sym_comment, - ACTIONS(2830), 17, + ACTIONS(2844), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118636,13 +124789,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73404] = 2, + [78893] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1544), 1, sym_comment, - ACTIONS(2826), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118657,13 +124815,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73427] = 2, + [78923] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1545), 1, sym_comment, - ACTIONS(2826), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118678,13 +124841,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73450] = 2, + [78953] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1546), 1, sym_comment, - ACTIONS(2826), 17, + ACTIONS(2844), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118699,15 +124867,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73473] = 3, + [78983] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1547), 1, sym_comment, - ACTIONS(2834), 1, - anon_sym_SEMI, - ACTIONS(2832), 16, + ACTIONS(2844), 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, @@ -118721,13 +124893,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73498] = 2, + [79013] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1548), 1, sym_comment, - ACTIONS(2826), 17, + ACTIONS(2844), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118742,19 +124919,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73521] = 5, + [79043] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1549), 1, sym_comment, - ACTIONS(2836), 1, - anon_sym_LPAREN, - ACTIONS(2838), 1, - anon_sym_DOT, - STATE(1646), 1, - sym_arguments, - ACTIONS(2808), 14, + ACTIONS(2842), 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, @@ -118766,13 +124945,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73550] = 2, + [79073] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1550), 1, sym_comment, - ACTIONS(2830), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118787,13 +124971,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73573] = 2, + [79103] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1551), 1, sym_comment, - ACTIONS(2840), 17, + ACTIONS(2055), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118808,45 +124997,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73596] = 13, - ACTIONS(1179), 1, - anon_sym_var, - ACTIONS(1193), 1, - anon_sym_class, - ACTIONS(1195), 1, - anon_sym_async, - ACTIONS(1197), 1, - anon_sym_function, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(2729), 1, - anon_sym_LPAREN, - ACTIONS(2842), 1, - anon_sym_default, - STATE(888), 1, - sym_declaration, - STATE(1852), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - ACTIONS(1181), 2, - anon_sym_let, - anon_sym_const, - STATE(971), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [73641] = 2, + [79133] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1552), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118861,13 +125023,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73664] = 2, + [79163] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1553), 1, sym_comment, - ACTIONS(2844), 17, + ACTIONS(2846), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118882,16 +125049,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73687] = 2, + [79193] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1554), 1, sym_comment, - ACTIONS(2846), 17, + ACTIONS(2848), 18, anon_sym_export, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_class, + anon_sym_LTtemplate_GT, anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -118903,13 +125075,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73710] = 2, + [79223] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1555), 1, sym_comment, - ACTIONS(880), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118924,13 +125101,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73733] = 2, + [79253] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1556), 1, sym_comment, - ACTIONS(2830), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118945,13 +125127,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73756] = 2, + [79283] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1557), 1, sym_comment, - ACTIONS(2830), 17, + ACTIONS(2047), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118966,13 +125153,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73779] = 2, + [79313] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1558), 1, sym_comment, - ACTIONS(2830), 17, + ACTIONS(2850), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -118987,13 +125179,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73802] = 2, + [79343] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1559), 1, sym_comment, - ACTIONS(2848), 17, + ACTIONS(2852), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119008,37 +125205,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73825] = 5, + [79373] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1560), 1, sym_comment, - ACTIONS(2852), 1, - anon_sym_AT, - STATE(1551), 1, - aux_sym_export_statement_repeat1, - STATE(1592), 1, - sym_decorator, - ACTIONS(2850), 14, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_class, + 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, - [73854] = 2, + [79403] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1561), 1, sym_comment, - ACTIONS(2830), 17, + ACTIONS(2854), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119053,16 +125257,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73877] = 2, + [79433] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1562), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2856), 18, anon_sym_export, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_let, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + anon_sym_DOT, + anon_sym_class, anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -119074,13 +125283,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73900] = 2, + [79463] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1563), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119095,14 +125309,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73923] = 2, + [79493] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2858), 1, + anon_sym_SEMI, + STATE(1564), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2854), 17, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_let, anon_sym_LBRACK, anon_sym_LTtemplate_GT, anon_sym_async, @@ -119116,13 +125336,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73946] = 2, + [79525] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1565), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2842), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119137,13 +125362,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73969] = 2, + [79555] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1566), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2844), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119158,16 +125388,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [73992] = 2, + [79585] = 6, 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, sym_comment, - ACTIONS(2822), 17, + aux_sym_export_statement_repeat1, + ACTIONS(2861), 15, anon_sym_export, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + 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_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [79619] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2866), 1, + anon_sym_LPAREN, + ACTIONS(2868), 1, + anon_sym_DOT, + STATE(1568), 1, + sym_comment, + STATE(1641), 1, + sym_arguments, + ACTIONS(2830), 15, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -119179,13 +125445,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74015] = 2, + [79655] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1569), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2870), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119200,13 +125471,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74038] = 2, + [79685] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1570), 1, sym_comment, - ACTIONS(846), 17, + ACTIONS(2870), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119221,13 +125497,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74061] = 2, + [79715] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1571), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2870), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119242,13 +125523,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74084] = 2, + [79745] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1572), 1, sym_comment, - ACTIONS(2822), 17, + ACTIONS(2870), 18, anon_sym_export, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_let, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -119263,40 +125549,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74107] = 9, + [79775] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1573), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2870), 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, - ACTIONS(1306), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2855), 1, - anon_sym_EQ_GT, - ACTIONS(2857), 2, sym_number, - sym_private_property_identifier, - STATE(2343), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, - anon_sym_export, - anon_sym_async, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74143] = 2, + [79805] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1574), 1, sym_comment, - ACTIONS(2859), 16, + ACTIONS(1925), 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, @@ -119310,13 +125601,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74165] = 2, + [79835] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1575), 1, sym_comment, - ACTIONS(1944), 16, + ACTIONS(2870), 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, @@ -119330,36 +125627,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74187] = 5, + [79865] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1576), 1, sym_comment, - ACTIONS(2861), 1, - anon_sym_AT, - STATE(1566), 1, - aux_sym_export_statement_repeat1, - STATE(1647), 1, - sym_decorator, - ACTIONS(2850), 13, + ACTIONS(2872), 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, 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, - [74215] = 2, + [79895] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1577), 1, sym_comment, - ACTIONS(2078), 16, + ACTIONS(939), 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, @@ -119373,13 +125679,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74237] = 2, + [79925] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1578), 1, sym_comment, - ACTIONS(1882), 16, + ACTIONS(874), 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, @@ -119393,15 +125705,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74259] = 2, + [79955] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1579), 1, sym_comment, - ACTIONS(2846), 16, + ACTIONS(2874), 18, anon_sym_export, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_LTtemplate_GT, anon_sym_async, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -119413,449 +125731,382 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74281] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(1251), 1, - anon_sym_var, - ACTIONS(1257), 1, - anon_sym_class, - ACTIONS(1259), 1, - anon_sym_async, - ACTIONS(1261), 1, - anon_sym_function, - ACTIONS(2864), 1, - anon_sym_default, - STATE(602), 1, - sym_declaration, - STATE(1937), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - ACTIONS(1253), 2, - anon_sym_let, - anon_sym_const, - STATE(532), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [74323] = 12, + [79985] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2866), 1, + ACTIONS(2876), 1, anon_sym_STAR, - ACTIONS(2868), 1, + ACTIONS(2878), 1, anon_sym_async, - ACTIONS(2872), 1, + ACTIONS(2880), 1, anon_sym_get, - ACTIONS(2874), 1, + ACTIONS(2882), 1, anon_sym_set, - ACTIONS(2870), 2, + STATE(1580), 1, + sym_comment, + STATE(2192), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1316), 3, + STATE(2554), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1352), 4, anon_sym_export, + anon_sym_let, sym_identifier, anon_sym_static, - STATE(2351), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [74365] = 10, + [80036] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2884), 1, anon_sym_STAR, - ACTIONS(2857), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2878), 2, + ACTIONS(2886), 1, anon_sym_get, + ACTIONS(2888), 1, anon_sym_set, - STATE(2343), 3, - sym_string, + 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(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [74403] = 11, + [80085] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1582), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2856), 17, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_async, anon_sym_DQUOTE, - ACTIONS(1306), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - anon_sym_STAR, - ACTIONS(2884), 1, - anon_sym_get, - ACTIONS(2886), 1, - anon_sym_set, - ACTIONS(2882), 2, sym_number, - sym_private_property_identifier, - STATE(2598), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 4, - anon_sym_export, - anon_sym_async, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, - [74443] = 11, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [80114] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2888), 1, + ACTIONS(2890), 1, anon_sym_STAR, ACTIONS(2892), 1, anon_sym_get, ACTIONS(2894), 1, anon_sym_set, - ACTIONS(2890), 2, + STATE(1583), 1, + sym_comment, + STATE(2363), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2432), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [74483] = 10, + [80163] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2782), 1, - anon_sym_STAR, - ACTIONS(2784), 2, + 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, - ACTIONS(2786), 2, - anon_sym_get, - anon_sym_set, - STATE(2578), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [74521] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(1215), 1, - anon_sym_var, - ACTIONS(1223), 1, - anon_sym_class, - ACTIONS(1225), 1, - anon_sym_async, - ACTIONS(1227), 1, - anon_sym_function, - ACTIONS(2896), 1, - anon_sym_default, - STATE(731), 1, - sym_declaration, - STATE(1905), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - ACTIONS(1217), 2, - anon_sym_let, - anon_sym_const, - STATE(824), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [74563] = 2, + anon_sym_get, + anon_sym_set, + [80208] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(2898), 16, - anon_sym_export, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_async, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, + ACTIONS(1310), 1, anon_sym_SQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - aux_sym_method_definition_token1, + ACTIONS(2727), 1, + anon_sym_LBRACK, + ACTIONS(2747), 1, + anon_sym_LPAREN, + ACTIONS(2898), 1, + anon_sym_STAR, + ACTIONS(2900), 1, anon_sym_get, + ACTIONS(2902), 1, anon_sym_set, - [74585] = 2, - ACTIONS(3), 1, + STATE(1585), 1, sym_comment, - ACTIONS(2832), 16, + STATE(2255), 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_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + anon_sym_let, 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, - [74607] = 2, + [80257] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2904), 1, + anon_sym_AT, + STATE(1632), 1, + sym_decorator, + STATE(1586), 2, sym_comment, - ACTIONS(2900), 16, + aux_sym_export_statement_repeat1, + ACTIONS(2861), 14, anon_sym_export, anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_let, 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, - [74629] = 11, + [80290] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2907), 1, anon_sym_STAR, - ACTIONS(2906), 1, + ACTIONS(2909), 1, anon_sym_get, - ACTIONS(2908), 1, + ACTIONS(2911), 1, anon_sym_set, - ACTIONS(2904), 2, + STATE(1587), 1, + sym_comment, + STATE(2301), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2441), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [74669] = 11, + [80339] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2910), 1, + ACTIONS(2913), 1, anon_sym_STAR, - ACTIONS(2914), 1, - anon_sym_get, - ACTIONS(2916), 1, - anon_sym_set, - ACTIONS(2912), 2, + STATE(1588), 1, + sym_comment, + STATE(2246), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2348), 3, + ACTIONS(2915), 2, + anon_sym_get, + anon_sym_set, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 4, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [74709] = 12, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(1235), 1, + [80386] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1215), 1, anon_sym_var, - ACTIONS(1241), 1, + ACTIONS(1229), 1, anon_sym_class, - ACTIONS(1243), 1, + ACTIONS(1231), 1, anon_sym_async, - ACTIONS(1245), 1, + ACTIONS(1233), 1, anon_sym_function, - ACTIONS(2918), 1, + 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(665), 1, - sym_declaration, - STATE(1871), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - ACTIONS(1237), 2, - anon_sym_let, - anon_sym_const, - STATE(868), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [74751] = 12, - ACTIONS(1179), 1, - anon_sym_var, - ACTIONS(1193), 1, - anon_sym_class, - ACTIONS(1195), 1, - anon_sym_async, - ACTIONS(1197), 1, - anon_sym_function, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(2842), 1, - anon_sym_default, - STATE(888), 1, + STATE(953), 1, sym_declaration, - STATE(1852), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - ACTIONS(1181), 2, - anon_sym_let, - anon_sym_const, - STATE(971), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [74793] = 12, - ACTIONS(1203), 1, + STATE(1589), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(1267), 1, - anon_sym_var, - ACTIONS(1273), 1, - anon_sym_class, - ACTIONS(1275), 1, - anon_sym_async, - ACTIONS(1277), 1, - anon_sym_function, - ACTIONS(2920), 1, - anon_sym_default, - STATE(1922), 1, + STATE(1873), 1, aux_sym_export_statement_repeat1, - STATE(2031), 1, + STATE(2051), 1, sym_decorator, - STATE(2454), 1, - sym_declaration, - ACTIONS(1269), 2, + ACTIONS(1217), 2, anon_sym_let, anon_sym_const, - STATE(2562), 5, + STATE(923), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [74835] = 8, + [80437] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2922), 2, + ACTIONS(2798), 1, + anon_sym_STAR, + STATE(1590), 1, + sym_comment, + STATE(2154), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2608), 3, + ACTIONS(2800), 2, + anon_sym_get, + anon_sym_set, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [74868] = 2, + [80484] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1591), 1, sym_comment, - ACTIONS(2808), 15, + ACTIONS(2830), 16, anon_sym_export, anon_sym_STAR, + anon_sym_let, anon_sym_LBRACK, anon_sym_class, anon_sym_async, @@ -119869,62 +126120,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74889] = 8, + [80512] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2924), 2, + STATE(1592), 1, + sym_comment, + STATE(2359), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2434), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [74922] = 8, - ACTIONS(3), 1, + [80554] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(1271), 1, + anon_sym_var, + ACTIONS(1277), 1, + anon_sym_class, + ACTIONS(1279), 1, + anon_sym_async, + ACTIONS(1281), 1, + anon_sym_function, + ACTIONS(2919), 1, + anon_sym_default, + STATE(817), 1, + sym_declaration, + STATE(1593), 1, sym_comment, - ACTIONS(1304), 1, + STATE(1997), 1, + aux_sym_export_statement_repeat1, + STATE(2051), 1, + sym_decorator, + ACTIONS(1273), 2, + anon_sym_let, + anon_sym_const, + STATE(685), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [80602] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2926), 2, + STATE(1594), 1, + sym_comment, + STATE(2458), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2423), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [74955] = 2, + [80644] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1595), 1, sym_comment, - ACTIONS(1980), 15, + ACTIONS(2921), 16, anon_sym_export, anon_sym_STAR, + anon_sym_let, anon_sym_LBRACK, anon_sym_class, anon_sym_async, @@ -119938,887 +126240,1065 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [74976] = 8, - ACTIONS(3), 1, + [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, - ACTIONS(1304), 1, + STATE(2000), 1, + aux_sym_export_statement_repeat1, + STATE(2051), 1, + sym_decorator, + ACTIONS(1253), 2, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2928), 2, + STATE(1597), 1, + sym_comment, + STATE(2475), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2443), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75009] = 8, + [80762] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2930), 2, + STATE(1598), 1, + sym_comment, + STATE(2638), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2355), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [75042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2932), 15, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_class, + anon_sym_let, 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, - [75063] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2934), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [75084] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2936), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [75105] = 8, + [80804] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2938), 2, + STATE(1599), 1, + sym_comment, + STATE(2353), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2444), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75138] = 2, + [80846] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(2036), 15, - anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_class, - anon_sym_async, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, + ACTIONS(1310), 1, anon_sym_SQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - aux_sym_method_definition_token1, + ACTIONS(2727), 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, - [75159] = 2, - ACTIONS(1203), 1, + STATE(1600), 1, sym_comment, - ACTIONS(2940), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [75180] = 8, + STATE(2615), 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, + [80894] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2942), 2, + 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, + sym_comment, + STATE(2262), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2428), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [75213] = 10, + [80942] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(1321), 1, + ACTIONS(1357), 1, anon_sym_async, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, + ACTIONS(2743), 1, anon_sym_STAR, - ACTIONS(1308), 2, + STATE(1602), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1323), 2, + ACTIONS(1359), 2, anon_sym_get, anon_sym_set, - ACTIONS(1316), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - [75250] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2944), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [75271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2946), 15, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_class, - anon_sym_async, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, + anon_sym_let, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - aux_sym_method_definition_token1, - anon_sym_get, - anon_sym_set, - [75292] = 8, + [80988] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2948), 2, + STATE(1603), 1, + sym_comment, + STATE(2623), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2356), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75325] = 8, + [81030] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2950), 2, + STATE(1604), 1, + sym_comment, + STATE(2246), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2504), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75358] = 8, + [81072] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2952), 2, + STATE(1605), 1, + sym_comment, + STATE(2360), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2600), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75391] = 8, + [81114] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2857), 2, + STATE(1606), 1, + sym_comment, + STATE(2364), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2343), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75424] = 11, + [81156] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2954), 1, - anon_sym_STAR, - ACTIONS(2956), 1, - anon_sym_async, - ACTIONS(2960), 1, - anon_sym_get, - ACTIONS(2962), 1, - anon_sym_set, - ACTIONS(2958), 2, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1607), 1, + sym_comment, + STATE(2365), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(1316), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(2352), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - [75463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 15, + ACTIONS(1352), 7, anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_class, + anon_sym_let, 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, - [75484] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2964), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [75505] = 10, + [81198] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, - anon_sym_STAR, - ACTIONS(2966), 1, - anon_sym_async, - ACTIONS(2778), 2, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1608), 1, + sym_comment, + STATE(2639), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - ACTIONS(2780), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1316), 3, + 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, - STATE(2567), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [75542] = 8, + anon_sym_get, + anon_sym_set, + [81240] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2968), 2, + STATE(1609), 1, + sym_comment, + STATE(2372), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2607), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75575] = 8, - ACTIONS(3), 1, + [81282] = 14, + 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(2917), 1, + anon_sym_default, + STATE(953), 1, + sym_declaration, + STATE(1610), 1, sym_comment, - ACTIONS(1304), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2970), 2, + STATE(1611), 1, + sym_comment, + STATE(2472), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2429), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75608] = 8, + [81372] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2972), 2, + STATE(1612), 1, + sym_comment, + STATE(2373), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2605), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75641] = 8, + [81414] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1613), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2101), 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, + 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, + [81442] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2974), 2, + STATE(1614), 1, + sym_comment, + STATE(2154), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2604), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75674] = 8, + [81484] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2784), 2, + STATE(1615), 1, + sym_comment, + STATE(2634), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2578), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75707] = 8, + [81526] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2976), 2, + STATE(1616), 1, + sym_comment, + STATE(2626), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2505), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75740] = 11, + [81568] = 13, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2978), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2980), 1, + ACTIONS(2941), 1, anon_sym_async, - ACTIONS(2984), 1, - anon_sym_get, - ACTIONS(2986), 1, - anon_sym_set, - ACTIONS(2982), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1316), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(2581), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [75779] = 8, - ACTIONS(3), 1, + STATE(1617), 1, sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2988), 2, + STATE(2601), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2492), 3, + ACTIONS(2804), 2, + anon_sym_get, + anon_sym_set, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [75812] = 8, + [81614] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2990), 2, + STATE(1618), 1, + sym_comment, + STATE(2462), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2589), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75845] = 8, + [81656] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2992), 2, + STATE(1619), 1, + sym_comment, + STATE(2625), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2591), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75878] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(2679), 1, + [81698] = 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(563), 1, + sym_declaration, + STATE(1620), 1, + sym_comment, + STATE(2004), 1, + aux_sym_export_statement_repeat1, + STATE(2051), 1, + sym_decorator, + ACTIONS(1340), 2, + anon_sym_let, + anon_sym_const, + STATE(654), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [81746] = 11, + 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(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2994), 2, + STATE(1621), 1, + sym_comment, + STATE(2633), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2592), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75911] = 8, + [81788] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2996), 2, + STATE(1622), 1, + sym_comment, + STATE(2641), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2433), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75944] = 8, + [81830] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2707), 1, + ACTIONS(2747), 1, anon_sym_LPAREN, - ACTIONS(2998), 2, + STATE(1623), 1, + sym_comment, + STATE(2268), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2599), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [75977] = 8, + [81872] = 14, + ACTIONS(5), 1, + sym_html_comment, + 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, + anon_sym_default, + STATE(1624), 1, + sym_comment, + STATE(1990), 1, + aux_sym_export_statement_repeat1, + STATE(2051), 1, + sym_decorator, + STATE(2679), 1, + sym_declaration, + ACTIONS(1322), 2, + anon_sym_let, + anon_sym_const, + STATE(2540), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [81920] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1625), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2947), 16, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_class, + anon_sym_async, anon_sym_DQUOTE, - ACTIONS(1306), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(3000), 2, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(2491), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, + anon_sym_AT, + anon_sym_static, + aux_sym_method_definition_token1, + anon_sym_get, + anon_sym_set, + [81948] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1626), 1, + sym_comment, + ACTIONS(2121), 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, + 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, - [76010] = 7, + [81976] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3002), 2, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1627), 1, + sym_comment, + STATE(2642), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2579), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76040] = 7, + [82018] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3004), 2, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1628), 1, + sym_comment, + STATE(2267), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2597), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76070] = 7, + [82060] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1629), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2131), 16, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_class, + anon_sym_async, anon_sym_DQUOTE, - ACTIONS(1306), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(3006), 2, sym_number, - sym_private_property_identifier, - STATE(2590), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, - anon_sym_export, - anon_sym_async, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76100] = 2, + [82088] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1630), 1, sym_comment, - ACTIONS(2808), 14, + ACTIONS(2131), 15, anon_sym_export, anon_sym_STAR, + anon_sym_let, anon_sym_LBRACK, anon_sym_async, anon_sym_DQUOTE, @@ -120831,219 +127311,387 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76120] = 7, + [82115] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2990), 2, + STATE(1631), 1, + sym_comment, + STATE(2624), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2589), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76150] = 7, + [82154] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1632), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2921), 15, + anon_sym_export, + anon_sym_STAR, + anon_sym_let, + anon_sym_LBRACK, + anon_sym_async, anon_sym_DQUOTE, - ACTIONS(1306), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, - anon_sym_LBRACK, - ACTIONS(3008), 2, sym_number, - sym_private_property_identifier, - STATE(2593), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1316), 6, - anon_sym_export, - anon_sym_async, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76180] = 7, + [82181] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3010), 2, + STATE(1633), 1, + sym_comment, + STATE(2457), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2603), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76210] = 7, + [82220] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1634), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2101), 15, + 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, + [82247] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3012), 2, + STATE(1635), 1, + sym_comment, + STATE(2223), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2490), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76240] = 7, + [82286] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3014), 2, + STATE(1636), 1, + sym_comment, + STATE(2601), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2438), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76270] = 7, - ACTIONS(3), 1, + [82325] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1637), 1, sym_comment, - ACTIONS(1304), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2926), 2, + STATE(1638), 1, + sym_comment, + STATE(2631), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2423), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76300] = 7, + [82391] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3016), 2, + STATE(1639), 1, + sym_comment, + STATE(2627), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2606), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76330] = 7, + [82430] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1640), 1, + sym_comment, + ACTIONS(2951), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [82457] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1641), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2947), 15, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2784), 2, + STATE(1642), 1, + sym_comment, + STATE(2623), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2578), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76360] = 7, - ACTIONS(3), 1, + [82523] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1643), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2953), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [82550] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2857), 2, + STATE(1644), 1, + sym_comment, + STATE(2353), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2343), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76390] = 2, + [82589] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1645), 1, sym_comment, - ACTIONS(2036), 14, + ACTIONS(2121), 15, anon_sym_export, anon_sym_STAR, + anon_sym_let, anon_sym_LBRACK, anon_sym_async, anon_sym_DQUOTE, @@ -121056,1388 +127704,1958 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76410] = 7, + [82616] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1646), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2830), 15, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(2778), 2, + STATE(1647), 1, + sym_comment, + STATE(2254), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2567), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76440] = 7, + [82682] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3018), 2, + STATE(1648), 1, + sym_comment, + STATE(2640), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2346), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76470] = 7, - ACTIONS(3), 1, + [82721] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1649), 1, sym_comment, - ACTIONS(1304), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(1308), 2, + STATE(1650), 1, + sym_comment, + STATE(2246), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2186), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76500] = 2, + [82787] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 14, - anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_async, + 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(1651), 1, + sym_comment, + STATE(2355), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, + 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, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76520] = 7, + [82826] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3020), 2, + STATE(1652), 1, + sym_comment, + STATE(2154), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2431), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76550] = 7, - ACTIONS(3), 1, + [82865] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1653), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2957), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [82892] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3022), 2, + STATE(1654), 1, + sym_comment, + STATE(2468), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2503), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76580] = 2, + [82931] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1980), 14, - anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_async, + 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, + sym_comment, + STATE(2637), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, + 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, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76600] = 7, + [82970] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(2679), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - ACTIONS(3024), 2, + STATE(1656), 1, + sym_comment, + STATE(2362), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, sym_private_property_identifier, - STATE(2424), 3, + STATE(2554), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(1316), 6, + ACTIONS(1352), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [76630] = 2, + [83009] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2946), 14, - anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_async, + 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(1657), 1, + sym_comment, + STATE(2613), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, + 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, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76650] = 2, + [83048] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2932), 14, - anon_sym_export, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_async, + 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(1658), 1, + sym_comment, + STATE(2370), 1, + sym__property_name, + ACTIONS(1312), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, + 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, - aux_sym_method_definition_token1, anon_sym_get, anon_sym_set, - [76670] = 8, + [83087] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3026), 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, - ACTIONS(3030), 1, - anon_sym_LT, - ACTIONS(3032), 1, - anon_sym_LT_SLASH, - STATE(1148), 1, - sym_jsx_closing_element, - STATE(1650), 1, - sym_jsx_opening_element, - ACTIONS(3028), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(1656), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76700] = 8, - ACTIONS(3), 1, + STATE(1659), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - anon_sym_LT, - ACTIONS(3034), 1, - anon_sym_LT_SLASH, - STATE(1650), 1, - sym_jsx_opening_element, - STATE(1838), 1, - sym_jsx_closing_element, - ACTIONS(3028), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(1656), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76730] = 8, + 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, - sym_comment, - ACTIONS(3026), 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, - ACTIONS(3030), 1, - anon_sym_LT, - ACTIONS(3036), 1, - anon_sym_LT_SLASH, - STATE(1650), 1, - sym_jsx_opening_element, - STATE(1837), 1, - sym_jsx_closing_element, - ACTIONS(3028), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(1651), 5, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76760] = 8, - ACTIONS(3), 1, + STATE(1660), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, + 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(3), 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(1661), 1, + sym_comment, + STATE(2201), 1, + sym_string, + STATE(2661), 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, + [83210] = 12, + ACTIONS(3), 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(1662), 1, + sym_comment, + STATE(2187), 1, + sym_string, + STATE(2586), 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, + [83251] = 12, + ACTIONS(3), 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(1663), 1, + sym_comment, + STATE(2545), 1, + sym_string, + STATE(2547), 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, + [83292] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2971), 1, anon_sym_LT, - ACTIONS(3036), 1, + ACTIONS(2973), 1, anon_sym_LT_SLASH, - STATE(1650), 1, + STATE(1664), 1, + sym_comment, + STATE(1671), 1, sym_jsx_opening_element, - STATE(1822), 1, + STATE(1675), 1, + aux_sym_jsx_element_repeat1, + STATE(1854), 1, sym_jsx_closing_element, - ACTIONS(3028), 2, + ACTIONS(2969), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1656), 5, + STATE(1859), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76790] = 8, + [83330] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3026), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2971), 1, anon_sym_LT, - ACTIONS(3034), 1, + ACTIONS(2973), 1, anon_sym_LT_SLASH, - STATE(1650), 1, + STATE(1664), 1, + aux_sym_jsx_element_repeat1, + STATE(1665), 1, + sym_comment, + STATE(1671), 1, sym_jsx_opening_element, - STATE(1803), 1, + STATE(1800), 1, sym_jsx_closing_element, - ACTIONS(3028), 2, + ACTIONS(2969), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1649), 5, + STATE(1859), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76820] = 8, + [83368] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3026), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2971), 1, anon_sym_LT, - ACTIONS(3038), 1, + ACTIONS(2975), 1, anon_sym_LT_SLASH, - STATE(1335), 1, + STATE(1088), 1, sym_jsx_closing_element, - STATE(1650), 1, + STATE(1666), 1, + sym_comment, + STATE(1671), 1, sym_jsx_opening_element, - ACTIONS(3028), 2, + STATE(1675), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(2969), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1655), 5, + STATE(1859), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76850] = 8, + [83406] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3026), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2971), 1, anon_sym_LT, - ACTIONS(3032), 1, + ACTIONS(2977), 1, anon_sym_LT_SLASH, - STATE(1147), 1, + STATE(1364), 1, sym_jsx_closing_element, - STATE(1650), 1, + STATE(1667), 1, + sym_comment, + STATE(1671), 1, sym_jsx_opening_element, - ACTIONS(3028), 2, + STATE(1675), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(2969), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1648), 5, + STATE(1859), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76880] = 8, + [83444] = 11, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2971), 1, + anon_sym_LT, + ACTIONS(2979), 1, + anon_sym_LT_SLASH, + STATE(1668), 1, sym_comment, - ACTIONS(3026), 1, + STATE(1671), 1, + sym_jsx_opening_element, + STATE(1675), 1, + aux_sym_jsx_element_repeat1, + STATE(1815), 1, + sym_jsx_closing_element, + ACTIONS(2969), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(1859), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [83482] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2971), 1, anon_sym_LT, - ACTIONS(3038), 1, + ACTIONS(2977), 1, anon_sym_LT_SLASH, - STATE(1307), 1, + STATE(1268), 1, sym_jsx_closing_element, - STATE(1650), 1, + STATE(1667), 1, + aux_sym_jsx_element_repeat1, + STATE(1669), 1, + sym_comment, + STATE(1671), 1, sym_jsx_opening_element, - ACTIONS(3028), 2, + ACTIONS(2969), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1656), 5, + STATE(1859), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76910] = 7, + [83520] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3040), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, anon_sym_LBRACE, - ACTIONS(3046), 1, + ACTIONS(2971), 1, anon_sym_LT, - ACTIONS(3049), 1, + ACTIONS(2975), 1, anon_sym_LT_SLASH, - STATE(1650), 1, + STATE(1129), 1, + sym_jsx_closing_element, + STATE(1666), 1, + aux_sym_jsx_element_repeat1, + STATE(1670), 1, + sym_comment, + STATE(1671), 1, sym_jsx_opening_element, - ACTIONS(3043), 2, + ACTIONS(2969), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1656), 5, + STATE(1859), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [76937] = 10, + [83558] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, + anon_sym_LBRACE, + ACTIONS(2971), 1, + anon_sym_LT, + ACTIONS(2979), 1, + anon_sym_LT_SLASH, + STATE(1668), 1, + aux_sym_jsx_element_repeat1, + STATE(1847), 1, + sym_jsx_closing_element, + ACTIONS(2969), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(1671), 2, + sym_jsx_opening_element, sym_comment, - ACTIONS(3053), 1, + STATE(1859), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [83594] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(2985), 1, anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, + ACTIONS(2989), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(2991), 1, anon_sym_SLASH_GT, - STATE(1690), 1, + STATE(1672), 1, + sym_comment, + STATE(1703), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [76970] = 10, + [83633] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(2985), 1, anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, + ACTIONS(2989), 1, anon_sym_DOT, - ACTIONS(3063), 1, + ACTIONS(2993), 1, anon_sym_SLASH_GT, - STATE(1678), 1, + STATE(1673), 1, + sym_comment, + STATE(1696), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77003] = 10, + [83672] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(2985), 1, anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, + ACTIONS(2989), 1, anon_sym_DOT, - ACTIONS(3065), 1, + ACTIONS(2995), 1, anon_sym_SLASH_GT, - STATE(1687), 1, + STATE(1674), 1, + sym_comment, + STATE(1691), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77036] = 10, + [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, - ACTIONS(3053), 1, + aux_sym_jsx_element_repeat1, + STATE(1859), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [83744] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(2985), 1, anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, + ACTIONS(2989), 1, anon_sym_DOT, - ACTIONS(3067), 1, + ACTIONS(3008), 1, anon_sym_SLASH_GT, - STATE(1688), 1, + STATE(1676), 1, + sym_comment, + STATE(1694), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77069] = 9, + [83783] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, - anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3065), 1, + ACTIONS(2989), 1, + anon_sym_DOT, + ACTIONS(2993), 1, anon_sym_SLASH_GT, - STATE(1679), 1, + STATE(1677), 1, + sym_comment, + STATE(1686), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77099] = 9, + [83819] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(2985), 1, + anon_sym_COLON, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, - anon_sym_DOT, - ACTIONS(3065), 1, + ACTIONS(2991), 1, anon_sym_SLASH_GT, - STATE(1670), 1, + STATE(1678), 1, + sym_comment, + STATE(1697), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77129] = 9, + [83855] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(2985), 1, + anon_sym_COLON, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, - anon_sym_DOT, - ACTIONS(3067), 1, + ACTIONS(3008), 1, anon_sym_SLASH_GT, - STATE(1680), 1, + STATE(1679), 1, + sym_comment, + STATE(1699), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77159] = 9, + [83891] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(2985), 1, anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3061), 1, + ACTIONS(2993), 1, anon_sym_SLASH_GT, - STATE(1684), 1, + STATE(1680), 1, + sym_comment, + STATE(1690), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77189] = 9, + [83927] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, - anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3067), 1, + ACTIONS(2989), 1, + anon_sym_DOT, + ACTIONS(3008), 1, anon_sym_SLASH_GT, - STATE(1682), 1, + STATE(1681), 1, + sym_comment, + STATE(1692), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77219] = 9, + [83963] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, + ACTIONS(2989), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(2995), 1, anon_sym_SLASH_GT, - STATE(1691), 1, + STATE(1682), 1, + sym_comment, + STATE(1705), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77249] = 9, + [83999] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(2985), 1, + anon_sym_COLON, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3059), 1, - anon_sym_DOT, - ACTIONS(3063), 1, + ACTIONS(2995), 1, anon_sym_SLASH_GT, - STATE(1685), 1, + STATE(1683), 1, + sym_comment, + STATE(1687), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77279] = 9, + [84035] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, - anon_sym_COLON, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3063), 1, + ACTIONS(2989), 1, + anon_sym_DOT, + ACTIONS(2991), 1, anon_sym_SLASH_GT, - STATE(1676), 1, + STATE(1684), 1, + sym_comment, + STATE(1688), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77309] = 8, + [84071] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3069), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3071), 1, + ACTIONS(3008), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1685), 1, + sym_comment, + STATE(1693), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77336] = 8, + [84104] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3073), 1, + ACTIONS(3010), 1, anon_sym_GT, - ACTIONS(3075), 1, + ACTIONS(3012), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1686), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77363] = 8, + [84137] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3069), 1, + ACTIONS(3014), 1, anon_sym_GT, - ACTIONS(3077), 1, + ACTIONS(3016), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1687), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77390] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_LBRACE, - ACTIONS(3081), 1, - anon_sym_LT, - ACTIONS(3083), 1, - anon_sym_DQUOTE, - ACTIONS(3085), 1, - anon_sym_SQUOTE, - STATE(1652), 1, - sym_jsx_opening_element, - STATE(1835), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [77415] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_LBRACE, - ACTIONS(3081), 1, - anon_sym_LT, - ACTIONS(3083), 1, - anon_sym_DQUOTE, - ACTIONS(3085), 1, - anon_sym_SQUOTE, - STATE(1652), 1, - sym_jsx_opening_element, - STATE(1836), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [77440] = 7, + [84170] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3090), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - STATE(1674), 1, + ACTIONS(3010), 1, + anon_sym_GT, + ACTIONS(3018), 1, + anon_sym_SLASH_GT, + STATE(1688), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3087), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - ACTIONS(3093), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77465] = 8, + [84203] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3065), 1, + ACTIONS(2995), 1, anon_sym_SLASH_GT, - STATE(1683), 1, + STATE(1689), 1, + sym_comment, + STATE(1704), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77492] = 8, + [84236] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3095), 1, + ACTIONS(3014), 1, anon_sym_GT, - ACTIONS(3097), 1, + ACTIONS(3020), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1690), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77519] = 8, + [84269] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3069), 1, + ACTIONS(3022), 1, anon_sym_GT, - ACTIONS(3099), 1, + ACTIONS(3024), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1691), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77546] = 8, + [84302] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, + ACTIONS(3010), 1, anon_sym_GT, - ACTIONS(3103), 1, + ACTIONS(3026), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1692), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77573] = 8, + [84335] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3095), 1, + ACTIONS(3028), 1, anon_sym_GT, - ACTIONS(3105), 1, + ACTIONS(3030), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1693), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77600] = 8, + [84368] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3073), 1, + ACTIONS(3022), 1, anon_sym_GT, - ACTIONS(3107), 1, + ACTIONS(3032), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1694), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77627] = 8, + [84401] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3061), 1, + ACTIONS(2991), 1, anon_sym_SLASH_GT, - STATE(1671), 1, + STATE(1695), 1, + sym_comment, + STATE(1698), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77654] = 8, + [84434] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3095), 1, + ACTIONS(3022), 1, anon_sym_GT, - ACTIONS(3109), 1, + ACTIONS(3034), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1696), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77681] = 8, + [84467] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3069), 1, + ACTIONS(3014), 1, anon_sym_GT, - ACTIONS(3111), 1, + ACTIONS(3036), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1697), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77708] = 8, + [84500] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3095), 1, + ACTIONS(3028), 1, anon_sym_GT, - ACTIONS(3113), 1, + ACTIONS(3038), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1698), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77735] = 8, + [84533] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3073), 1, + ACTIONS(3014), 1, anon_sym_GT, - ACTIONS(3115), 1, + ACTIONS(3040), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1699), 1, + sym_comment, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77762] = 8, + [84566] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3045), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, - anon_sym_GT, - ACTIONS(3063), 1, - anon_sym_SLASH_GT, - STATE(1677), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(3042), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + ACTIONS(3048), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1700), 2, + sym_comment, + aux_sym_jsx_opening_element_repeat1, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77789] = 8, + [84595] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, + ACTIONS(3028), 1, anon_sym_GT, - ACTIONS(3117), 1, + ACTIONS(3050), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1701), 1, + sym_comment, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77816] = 8, + [84628] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, + ACTIONS(2987), 1, anon_sym_GT, - ACTIONS(3119), 1, + ACTIONS(2993), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1701), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1702), 1, + sym_comment, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77843] = 8, + [84661] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(3022), 1, anon_sym_GT, - ACTIONS(3067), 1, + ACTIONS(3052), 1, anon_sym_SLASH_GT, - STATE(1669), 1, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1703), 1, + sym_comment, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77870] = 8, + [84694] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, + ACTIONS(3028), 1, anon_sym_GT, - ACTIONS(3121), 1, + ACTIONS(3054), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1704), 1, + sym_comment, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77897] = 8, + [84727] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(3073), 1, + ACTIONS(3010), 1, anon_sym_GT, - ACTIONS(3123), 1, + ACTIONS(3056), 1, anon_sym_SLASH_GT, - STATE(1674), 1, + STATE(1700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1737), 1, + STATE(1705), 1, + sym_comment, + STATE(1758), 1, sym_jsx_namespace_name, - ACTIONS(3051), 2, + ACTIONS(2981), 2, sym_jsx_identifier, sym_identifier, - STATE(1806), 2, + STATE(1841), 2, sym_jsx_expression, sym_jsx_attribute, - [77924] = 8, - ACTIONS(3), 1, + [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, - ACTIONS(1304), 1, + 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(1306), 1, + ACTIONS(3064), 1, anon_sym_SQUOTE, - ACTIONS(3125), 1, - sym_identifier, - ACTIONS(3127), 1, - anon_sym_COMMA, - ACTIONS(3129), 1, - anon_sym_RBRACE, - STATE(2119), 1, - sym_import_specifier, - STATE(2776), 2, - sym__module_export_name, + 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, - [77950] = 8, + [84822] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(3131), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3133), 1, + ACTIONS(3068), 1, anon_sym_COMMA, - ACTIONS(3135), 1, + ACTIONS(3070), 1, anon_sym_RBRACE, - STATE(2004), 1, - sym_export_specifier, - STATE(2002), 2, - sym__module_export_name, + STATE(1708), 1, + sym_comment, + STATE(1883), 1, sym_string, - [77976] = 7, + STATE(2140), 1, + sym_import_specifier, + STATE(2804), 1, + sym__module_export_name, + [84856] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(3131), 1, + ACTIONS(3072), 1, sym_identifier, - ACTIONS(3137), 1, + ACTIONS(3074), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, anon_sym_RBRACE, - STATE(2400), 1, - sym_export_specifier, - STATE(2002), 2, - sym__module_export_name, + STATE(1709), 1, + sym_comment, + STATE(1883), 1, sym_string, - [77999] = 4, + STATE(2150), 1, + sym__module_export_name, + STATE(2151), 1, + sym_export_specifier, + [84890] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_COLON, - ACTIONS(3141), 1, - anon_sym_EQ, - ACTIONS(3139), 5, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(1409), 1, + anon_sym_LBRACK, + ACTIONS(3078), 1, sym_identifier, - [78016] = 7, - ACTIONS(1203), 1, + STATE(1710), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3145), 1, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1889), 1, + sym_variable_declarator, + STATE(1776), 2, + sym_object_pattern, + sym_array_pattern, + [84919] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1213), 1, anon_sym_RBRACE, - ACTIONS(3147), 1, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3080), 1, + anon_sym_COMMA, + ACTIONS(3082), 1, anon_sym_EQ, - STATE(1986), 1, + STATE(1711), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - STATE(1990), 1, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2729), 2, + ACTIONS(2765), 2, anon_sym_LPAREN, anon_sym_COLON, - [78039] = 6, - ACTIONS(3), 1, + [84948] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2285), 1, + sym__automatic_semicolon, + STATE(1712), 1, sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, - anon_sym_LBRACE, - ACTIONS(3153), 1, - anon_sym_LBRACK, - STATE(1869), 1, - sym_variable_declarator, - STATE(1813), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [78060] = 7, + ACTIONS(932), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [84969] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(3125), 1, + ACTIONS(3072), 1, sym_identifier, - ACTIONS(3155), 1, + ACTIONS(3084), 1, anon_sym_RBRACE, - STATE(2455), 1, - sym_import_specifier, - STATE(2776), 2, - sym__module_export_name, - sym_string, - [78083] = 7, - ACTIONS(1203), 1, + STATE(1713), 1, sym_comment, - ACTIONS(1207), 1, - anon_sym_RBRACE, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_EQ, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, - aux_sym_object_repeat1, - ACTIONS(2729), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [78106] = 6, + STATE(1883), 1, + sym_string, + STATE(2150), 1, + sym__module_export_name, + STATE(2338), 1, + sym_export_specifier, + [85000] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3151), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - ACTIONS(3157), 1, + ACTIONS(3078), 1, sym_identifier, - STATE(1906), 1, + STATE(1714), 1, + sym_comment, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1939), 1, sym_variable_declarator, - STATE(1705), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78127] = 6, + [85029] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - STATE(1903), 1, + ACTIONS(3078), 1, + sym_identifier, + STATE(1715), 1, + sym_comment, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(2092), 1, sym_variable_declarator, - STATE(1813), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78148] = 6, + [85058] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3151), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - ACTIONS(3159), 1, + ACTIONS(3078), 1, sym_identifier, - STATE(1907), 1, + STATE(1716), 1, + sym_comment, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1940), 1, sym_variable_declarator, - STATE(1704), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78169] = 7, - ACTIONS(3), 1, + [85087] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1717), 1, sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(3125), 1, - sym_identifier, - ACTIONS(3161), 1, + ACTIONS(3086), 7, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2455), 1, - sym_import_specifier, - STATE(2776), 2, - sym__module_export_name, - sym_string, - [78192] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_EQ, - STATE(1831), 1, - sym__initializer, - ACTIONS(3165), 2, + anon_sym_RPAREN, anon_sym_in, anon_sym_of, - ACTIONS(3163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [78211] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3169), 1, anon_sym_EQ, - STATE(2088), 1, - sym__initializer, - ACTIONS(3165), 2, + 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, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_in, anon_sym_of, - ACTIONS(3163), 3, - sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_RBRACK, + [85125] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1245), 1, + anon_sym_RBRACE, + ACTIONS(3080), 1, anon_sym_COMMA, - anon_sym_SEMI, - [78230] = 6, - ACTIONS(3), 1, + ACTIONS(3082), 1, + anon_sym_EQ, + STATE(1719), 1, sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, - anon_sym_LBRACE, - ACTIONS(3153), 1, - anon_sym_LBRACK, - STATE(1920), 1, - sym_variable_declarator, - STATE(1813), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [78251] = 7, - ACTIONS(1203), 1, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + STATE(2114), 1, + aux_sym_object_repeat1, + ACTIONS(2765), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [85154] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1720), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3090), 7, anon_sym_COMMA, - ACTIONS(3147), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [85173] = 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(3171), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(1721), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(2729), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2765), 2, anon_sym_LPAREN, anon_sym_COLON, - [78274] = 6, + [85202] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - STATE(1870), 1, + ACTIONS(3094), 1, + sym_identifier, + STATE(1722), 1, + sym_comment, + STATE(1739), 1, + sym__destructuring_pattern, + STATE(1920), 1, sym_variable_declarator, - STATE(1813), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78295] = 6, + [85231] = 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(1723), 1, sym_comment, - ACTIONS(3149), 1, + 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, + 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, - ACTIONS(3151), 1, + STATE(1724), 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - STATE(1967), 1, + ACTIONS(3078), 1, + sym_identifier, + STATE(1725), 1, + sym_comment, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1953), 1, sym_variable_declarator, - STATE(1813), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, + [85318] = 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(3096), 1, + sym_identifier, + STATE(1726), 1, + sym_comment, + STATE(1742), 1, sym__destructuring_pattern, - [78316] = 2, - ACTIONS(1203), 1, + STATE(1921), 1, + sym_variable_declarator, + STATE(1776), 2, + sym_object_pattern, + sym_array_pattern, + [85347] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1727), 1, sym_comment, - ACTIONS(3173), 7, + ACTIONS(3098), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -122445,53 +129663,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [78329] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2220), 1, - sym__automatic_semicolon, - ACTIONS(840), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [78344] = 6, + [85366] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - STATE(2084), 1, + ACTIONS(3078), 1, + sym_identifier, + STATE(1728), 1, + sym_comment, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1960), 1, sym_variable_declarator, - STATE(1813), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78365] = 7, - ACTIONS(1177), 1, - anon_sym_RBRACE, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_EQ, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, - aux_sym_object_repeat1, - ACTIONS(2729), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [78388] = 2, - ACTIONS(1203), 1, + [85395] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1729), 1, sym_comment, - ACTIONS(3175), 7, + ACTIONS(3100), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -122499,152 +129698,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [78401] = 6, + [85414] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - STATE(1904), 1, + ACTIONS(3078), 1, + sym_identifier, + STATE(1730), 1, + sym_comment, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1930), 1, sym_variable_declarator, - STATE(1813), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78422] = 7, - ACTIONS(3), 1, + [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, - ACTIONS(1304), 1, + 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, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1308), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(3131), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3177), 1, + ACTIONS(3104), 1, anon_sym_RBRACE, - STATE(2400), 1, - sym_export_specifier, - STATE(2002), 2, - sym__module_export_name, - sym_string, - [78445] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, - anon_sym_LBRACE, - ACTIONS(3153), 1, - anon_sym_LBRACK, - STATE(1964), 1, - sym_variable_declarator, - STATE(1813), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [78466] = 3, - ACTIONS(1203), 1, + STATE(1732), 1, sym_comment, - ACTIONS(3179), 1, - sym__automatic_semicolon, - ACTIONS(882), 6, - anon_sym_COMMA, + STATE(1883), 1, + sym_string, + STATE(2390), 1, + sym_import_specifier, + STATE(2804), 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, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [78481] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3181), 7, + ACTIONS(3080), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(3082), 1, anon_sym_EQ, - anon_sym_RBRACK, - [78494] = 7, - ACTIONS(1203), 1, + STATE(1733), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_EQ, - ACTIONS(3183), 1, - anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(2010), 1, aux_sym_object_repeat1, - ACTIONS(2729), 2, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2765), 2, anon_sym_LPAREN, anon_sym_COLON, - [78517] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3185), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [78530] = 6, + [85532] = 9, ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1407), 1, anon_sym_LBRACE, - ACTIONS(3153), 1, + ACTIONS(1409), 1, anon_sym_LBRACK, - STATE(1943), 1, + ACTIONS(3078), 1, + sym_identifier, + STATE(1734), 1, + sym_comment, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1929), 1, sym_variable_declarator, - STATE(1813), 3, + STATE(1776), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78551] = 7, - ACTIONS(1203), 1, + [85561] = 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(1735), 1, sym_comment, - ACTIONS(1209), 1, - anon_sym_RBRACE, - ACTIONS(3143), 1, + STATE(1818), 1, + sym__destructuring_pattern, + STATE(1959), 1, + sym_variable_declarator, + STATE(1776), 2, + sym_object_pattern, + sym_array_pattern, + [85590] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3080), 1, anon_sym_COMMA, - ACTIONS(3147), 1, + ACTIONS(3082), 1, anon_sym_EQ, - STATE(1986), 1, + ACTIONS(3106), 1, + anon_sym_RBRACE, + STATE(1736), 1, + sym_comment, + STATE(2010), 1, aux_sym_object_repeat1, - STATE(1990), 1, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2729), 2, + ACTIONS(2765), 2, anon_sym_LPAREN, anon_sym_COLON, - [78574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, - anon_sym_LBRACE, - ACTIONS(3153), 1, - anon_sym_LBRACK, - STATE(1940), 1, - sym_variable_declarator, - STATE(1813), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [78595] = 2, - ACTIONS(1203), 1, + [85619] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1737), 1, sym_comment, - ACTIONS(3187), 7, + ACTIONS(3108), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -122652,12661 +129854,17245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [78608] = 7, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3143), 1, + [85638] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3080), 1, anon_sym_COMMA, - ACTIONS(3147), 1, + ACTIONS(3082), 1, anon_sym_EQ, - ACTIONS(3189), 1, + ACTIONS(3110), 1, anon_sym_RBRACE, - STATE(1990), 1, + STATE(1738), 1, + sym_comment, + STATE(2113), 1, aux_sym_object_pattern_repeat1, - STATE(1993), 1, + STATE(2114), 1, aux_sym_object_repeat1, - ACTIONS(2729), 2, + ACTIONS(2765), 2, anon_sym_LPAREN, anon_sym_COLON, - [78631] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - sym_identifier, - ACTIONS(3151), 1, - anon_sym_LBRACE, - ACTIONS(3153), 1, - anon_sym_LBRACK, - STATE(1918), 1, - sym_variable_declarator, - STATE(1813), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [78652] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3169), 1, + [85667] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3116), 1, anon_sym_EQ, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2214), 1, - sym_formal_parameters, - STATE(2477), 1, - sym__initializer, - ACTIONS(3193), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [78672] = 2, - ACTIONS(1203), 1, + STATE(1739), 1, sym_comment, - ACTIONS(2248), 6, - sym__automatic_semicolon, - anon_sym_COMMA, + 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, - anon_sym_EQ, - [78684] = 5, - ACTIONS(1203), 1, + [85692] = 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(3072), 1, + sym_identifier, + ACTIONS(3118), 1, + anon_sym_RBRACE, + STATE(1740), 1, sym_comment, - ACTIONS(3197), 1, - anon_sym_BQUOTE, - ACTIONS(3199), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3195), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1750), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [78702] = 6, - ACTIONS(1203), 1, + STATE(1883), 1, + sym_string, + STATE(2150), 1, + sym__module_export_name, + STATE(2338), 1, + sym_export_specifier, + [85723] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2985), 1, + anon_sym_COLON, + ACTIONS(3122), 1, + anon_sym_EQ, + STATE(1741), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(3120), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [85746] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3124), 1, anon_sym_EQ, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2246), 1, - sym_formal_parameters, - STATE(2385), 1, + STATE(1742), 1, + sym_comment, + STATE(2145), 1, sym__initializer, - ACTIONS(3201), 2, + ACTIONS(3114), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(3112), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [78722] = 6, - ACTIONS(1203), 1, + [85771] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3126), 1, + sym__automatic_semicolon, + STATE(1743), 1, sym_comment, - ACTIONS(3203), 1, - anon_sym_catch, - ACTIONS(3205), 1, - anon_sym_finally, - STATE(1951), 1, - sym_catch_clause, - STATE(2512), 1, - sym_finally_clause, - ACTIONS(1371), 2, + ACTIONS(876), 6, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_else, anon_sym_while, - [78742] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3169), 1, - anon_sym_EQ, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2190), 1, - sym_formal_parameters, - STATE(2517), 1, - sym__initializer, - ACTIONS(3207), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [78762] = 5, + 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, - ACTIONS(2490), 1, + STATE(1883), 1, + sym_string, + STATE(2390), 1, + sym_import_specifier, + STATE(2804), 1, + sym__module_export_name, + [85823] = 8, + 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, + sym_comment, + STATE(1780), 1, + aux_sym_switch_body_repeat1, + STATE(2099), 2, + sym_switch_case, + sym_switch_default, + [85849] = 7, + 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, + sym_comment, + aux_sym_switch_body_repeat1, + STATE(2099), 2, + sym_switch_case, + sym_switch_default, + [85873] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(3209), 1, + ACTIONS(3144), 1, sym_identifier, - ACTIONS(3211), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - STATE(2653), 3, + STATE(1747), 1, + sym_comment, + STATE(2751), 1, + sym__destructuring_pattern, + STATE(1727), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78780] = 2, - ACTIONS(1203), 1, + [85899] = 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(3148), 1, + anon_sym_RBRACE, + STATE(1748), 1, + sym_comment, + STATE(1764), 1, + aux_sym_switch_body_repeat1, + STATE(2099), 2, + sym_switch_case, + sym_switch_default, + [85925] = 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(3150), 1, + anon_sym_RBRACE, + STATE(1749), 1, + sym_comment, + STATE(1789), 1, + aux_sym_switch_body_repeat1, + STATE(2099), 2, + sym_switch_case, + sym_switch_default, + [85951] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1750), 1, sym_comment, - ACTIONS(882), 6, + ACTIONS(876), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_while, anon_sym_catch, anon_sym_finally, - [78792] = 6, - ACTIONS(1203), 1, + [85969] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1870), 1, + anon_sym_LPAREN, + ACTIONS(1874), 1, + anon_sym_DOT, + ACTIONS(1880), 1, + anon_sym_BQUOTE, + ACTIONS(3152), 1, + sym_optional_chain, + STATE(1751), 1, sym_comment, - ACTIONS(3169), 1, - anon_sym_EQ, - ACTIONS(3191), 1, + STATE(1142), 2, + sym_template_string, + sym_arguments, + [85995] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1752), 1, + sym_comment, + ACTIONS(2161), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, anon_sym_LPAREN, - STATE(2213), 1, - sym_formal_parameters, - STATE(2478), 1, - sym__initializer, - ACTIONS(3213), 2, + anon_sym_COLON, + [86013] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3156), 1, + anon_sym_BQUOTE, + ACTIONS(3158), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1753), 1, + sym_comment, + STATE(1759), 1, + aux_sym_template_string_repeat1, + STATE(1893), 1, + sym_template_substitution, + ACTIONS(3154), 2, + sym__template_chars, + sym_escape_sequence, + [86039] = 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(3160), 1, + anon_sym_RBRACE, + STATE(1746), 1, + aux_sym_switch_body_repeat1, + STATE(1754), 1, + sym_comment, + STATE(2099), 2, + sym_switch_case, + sym_switch_default, + [86065] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1755), 1, + sym_comment, + ACTIONS(2322), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [78812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3217), 1, anon_sym_EQ, - ACTIONS(3215), 5, + [86083] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1774), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(3146), 1, + anon_sym_LBRACK, + ACTIONS(3162), 1, sym_identifier, - [78826] = 2, + STATE(1756), 1, + sym_comment, + STATE(2735), 1, + sym__destructuring_pattern, + STATE(1727), 2, + sym_object_pattern, + sym_array_pattern, + [86109] = 8, + 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, + sym_comment, + STATE(2431), 1, + sym__initializer, + STATE(2555), 1, + sym_formal_parameters, + ACTIONS(3166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [86135] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3170), 1, + anon_sym_EQ, + STATE(1758), 1, sym_comment, - ACTIONS(3219), 6, + ACTIONS(3168), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - anon_sym_DOT, anon_sym_SLASH_GT, sym_identifier, - [78838] = 5, - ACTIONS(1203), 1, + [86155] = 8, + 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, sym_comment, - ACTIONS(3221), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3130), 1, anon_sym_default, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(3225), 1, + ACTIONS(3134), 1, anon_sym_case, - STATE(1773), 3, + ACTIONS(3174), 1, + anon_sym_RBRACE, + STATE(1754), 1, + aux_sym_switch_body_repeat1, + STATE(1760), 1, + sym_comment, + STATE(2099), 2, sym_switch_case, sym_switch_default, - aux_sym_switch_body_repeat1, - [78856] = 2, - ACTIONS(1203), 1, + [86207] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1761), 1, sym_comment, - ACTIONS(3181), 6, + ACTIONS(3088), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [78868] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1938), 6, - anon_sym_as, + [86225] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2291), 1, anon_sym_COMMA, + STATE(1762), 1, + sym_comment, + STATE(1781), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(3176), 4, anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - [78880] = 2, - ACTIONS(1203), 1, + anon_sym_RBRACK, + [86247] = 8, + 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(1763), 1, sym_comment, - ACTIONS(3187), 6, + STATE(2371), 1, + sym__initializer, + STATE(2677), 1, + sym_formal_parameters, + ACTIONS(3178), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, 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, + sym_comment, + STATE(2099), 2, + sym_switch_case, + sym_switch_default, + [86299] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3124), 1, anon_sym_EQ, - [78892] = 2, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(1765), 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, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1766), 1, sym_comment, - ACTIONS(3227), 6, + ACTIONS(3184), 6, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT, sym_jsx_identifier, + anon_sym_DOT, anon_sym_SLASH_GT, sym_identifier, - [78904] = 2, - ACTIONS(1203), 1, + [86343] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 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, sym_comment, - ACTIONS(3185), 6, + ACTIONS(2347), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [78916] = 5, + [86387] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(3229), 1, + ACTIONS(3188), 1, sym_identifier, - STATE(2683), 3, + STATE(1769), 1, + sym_comment, + STATE(2708), 1, + sym__destructuring_pattern, + STATE(1727), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [78934] = 5, - ACTIONS(1203), 1, + [86413] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1770), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_default, - ACTIONS(3225), 1, - anon_sym_case, - ACTIONS(3231), 1, + ACTIONS(941), 6, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1770), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [78952] = 6, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [86431] = 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, sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(3125), 1, - sym_identifier, - STATE(2455), 1, - sym_import_specifier, - STATE(2776), 2, - sym__module_export_name, - sym_string, - [78972] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2114), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [78984] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3199), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3235), 1, - anon_sym_BQUOTE, - ACTIONS(3233), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1760), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [79002] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3199), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3237), 1, - anon_sym_BQUOTE, - ACTIONS(3233), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1760), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [79020] = 2, - ACTIONS(1203), 1, + STATE(1991), 1, + sym_catch_clause, + STATE(2654), 1, + sym_finally_clause, + ACTIONS(1451), 2, + anon_sym_else, + anon_sym_while, + [86457] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1772), 1, sym_comment, - ACTIONS(3175), 6, + ACTIONS(3090), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [79032] = 2, - ACTIONS(1203), 1, + [86475] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1773), 1, sym_comment, - ACTIONS(2243), 6, + ACTIONS(3100), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [79044] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3241), 1, + [86493] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3196), 1, anon_sym_LPAREN, - ACTIONS(3243), 1, + ACTIONS(3198), 1, anon_sym_DOT, - STATE(2032), 1, + STATE(1774), 1, + sym_comment, + STATE(2115), 1, sym_arguments, - ACTIONS(3239), 3, + ACTIONS(3194), 3, anon_sym_export, anon_sym_class, anon_sym_AT, - [79062] = 5, + [86517] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1775), 1, sym_comment, - ACTIONS(2490), 1, + ACTIONS(3200), 6, anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_LBRACK, - ACTIONS(3245), 1, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(2673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [79080] = 5, - ACTIONS(1203), 1, + [86535] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1776), 1, sym_comment, - ACTIONS(3199), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3249), 1, - anon_sym_BQUOTE, - ACTIONS(3247), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1749), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [79098] = 5, + ACTIONS(3098), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [86553] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(3251), 1, + ACTIONS(3202), 1, sym_identifier, - STATE(2469), 3, + STATE(1777), 1, + sym_comment, + STATE(2696), 1, + sym__destructuring_pattern, + STATE(1727), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [79116] = 5, + [86579] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(3253), 1, + ACTIONS(3204), 1, sym_identifier, - STATE(1963), 3, + STATE(1778), 1, + sym_comment, + STATE(2731), 1, + sym__destructuring_pattern, + STATE(1727), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [79134] = 2, - ACTIONS(1203), 1, + [86605] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1779), 1, sym_comment, - ACTIONS(848), 6, + ACTIONS(3086), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [79146] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3221), 1, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [86623] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3130), 1, anon_sym_default, - ACTIONS(3225), 1, + ACTIONS(3134), 1, anon_sym_case, - ACTIONS(3255), 1, + ACTIONS(3206), 1, anon_sym_RBRACE, - STATE(1761), 3, + STATE(1746), 1, + aux_sym_switch_body_repeat1, + STATE(1780), 1, + sym_comment, + STATE(2099), 2, sym_switch_case, sym_switch_default, - aux_sym_switch_body_repeat1, - [79164] = 5, - ACTIONS(1203), 1, + [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, - ACTIONS(3260), 1, + 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1783), 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, + 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(1784), 1, + sym_comment, + STATE(2505), 1, + sym__initializer, + STATE(2556), 1, + sym_formal_parameters, + ACTIONS(3211), 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(3262), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3257), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1760), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [79182] = 5, - ACTIONS(1203), 1, + ACTIONS(3213), 1, + sym_optional_chain, + STATE(1785), 1, sym_comment, - ACTIONS(3221), 1, + STATE(1303), 2, + sym_template_string, + sym_arguments, + [86757] = 9, + 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, + sym_comment, + STATE(1883), 1, + sym_string, + STATE(2390), 1, + sym_import_specifier, + STATE(2804), 1, + sym__module_export_name, + [86785] = 9, + 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, + sym_comment, + STATE(1883), 1, + sym_string, + STATE(2150), 1, + sym__module_export_name, + STATE(2338), 1, + sym_export_specifier, + [86813] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3130), 1, anon_sym_default, - ACTIONS(3225), 1, + ACTIONS(3134), 1, anon_sym_case, - ACTIONS(3265), 1, + ACTIONS(3215), 1, anon_sym_RBRACE, - STATE(1767), 3, - sym_switch_case, - sym_switch_default, + STATE(1746), 1, aux_sym_switch_body_repeat1, - [79200] = 5, - ACTIONS(1203), 1, + STATE(1788), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_default, - ACTIONS(3225), 1, - anon_sym_case, - ACTIONS(3267), 1, - anon_sym_RBRACE, - STATE(1767), 3, + STATE(2099), 2, sym_switch_case, sym_switch_default, - aux_sym_switch_body_repeat1, - [79218] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3221), 1, + [86839] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3130), 1, anon_sym_default, - ACTIONS(3225), 1, + ACTIONS(3134), 1, anon_sym_case, - ACTIONS(3269), 1, + ACTIONS(3217), 1, anon_sym_RBRACE, - STATE(1769), 3, - sym_switch_case, - sym_switch_default, + STATE(1746), 1, aux_sym_switch_body_repeat1, - [79236] = 5, - ACTIONS(1203), 1, + STATE(1789), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_default, - ACTIONS(3225), 1, - anon_sym_case, - ACTIONS(3271), 1, - anon_sym_RBRACE, - STATE(1762), 3, + STATE(2099), 2, sym_switch_case, sym_switch_default, - aux_sym_switch_body_repeat1, - [79254] = 5, + [86865] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1774), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(3273), 1, + ACTIONS(3219), 1, sym_identifier, - STATE(2700), 3, + STATE(1790), 1, + sym_comment, + STATE(1935), 1, + sym__destructuring_pattern, + STATE(1727), 2, sym_object_pattern, sym_array_pattern, - sym__destructuring_pattern, - [79272] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2237), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [79284] = 5, - ACTIONS(1203), 1, + [86891] = 8, + 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, sym_comment, - ACTIONS(3275), 1, + STATE(2417), 1, + sym__destructuring_pattern, + STATE(1727), 2, + sym_object_pattern, + sym_array_pattern, + [86917] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3130), 1, anon_sym_default, - ACTIONS(3278), 1, - anon_sym_RBRACE, - ACTIONS(3280), 1, + ACTIONS(3134), 1, anon_sym_case, - STATE(1767), 3, + ACTIONS(3223), 1, + anon_sym_RBRACE, + STATE(1788), 1, + aux_sym_switch_body_repeat1, + STATE(1792), 1, + sym_comment, + STATE(2099), 2, sym_switch_case, sym_switch_default, - aux_sym_switch_body_repeat1, - [79302] = 2, - ACTIONS(1203), 1, + [86943] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1793), 1, sym_comment, - ACTIONS(3173), 6, + ACTIONS(3108), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [79314] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3221), 1, - anon_sym_default, + [86961] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3158), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(3225), 1, - anon_sym_case, - ACTIONS(3283), 1, - anon_sym_RBRACE, - STATE(1767), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [79332] = 5, - ACTIONS(1203), 1, + anon_sym_BQUOTE, + STATE(1794), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_default, - ACTIONS(3225), 1, - anon_sym_case, - ACTIONS(3285), 1, - anon_sym_RBRACE, - STATE(1767), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [79350] = 6, - ACTIONS(3), 1, + STATE(1795), 1, + aux_sym_template_string_repeat1, + STATE(1893), 1, + sym_template_substitution, + ACTIONS(3154), 2, + sym__template_chars, + sym_escape_sequence, + [86987] = 7, + 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, sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(3131), 1, - sym_identifier, - STATE(2400), 1, - sym_export_specifier, - STATE(2002), 2, - sym__module_export_name, - sym_string, - [79370] = 5, - ACTIONS(3), 1, + aux_sym_template_string_repeat1, + [87011] = 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, + anon_sym_RBRACE, + STATE(1796), 1, sym_comment, - ACTIONS(2490), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_LBRACK, - ACTIONS(3287), 1, - sym_identifier, - STATE(2663), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [79388] = 5, - ACTIONS(1203), 1, + STATE(2113), 1, + aux_sym_object_pattern_repeat1, + [87036] = 6, + 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(3221), 1, - anon_sym_default, - ACTIONS(3225), 1, - anon_sym_case, - ACTIONS(3289), 1, + ACTIONS(2765), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(3239), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1767), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [79406] = 6, + [87057] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3291), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3242), 1, sym_identifier, - ACTIONS(3293), 1, + ACTIONS(3244), 1, anon_sym_GT, - ACTIONS(3295), 1, + ACTIONS(3246), 1, sym_jsx_identifier, - STATE(2221), 1, + STATE(1682), 1, sym_nested_identifier, - STATE(2770), 1, + STATE(1689), 1, sym_jsx_namespace_name, - [79425] = 6, - ACTIONS(3), 1, + STATE(1798), 1, sym_comment, - ACTIONS(3297), 1, + [87082] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3248), 1, sym_identifier, - ACTIONS(3299), 1, + ACTIONS(3250), 1, anon_sym_LBRACE, - ACTIONS(3301), 1, + ACTIONS(3252), 1, anon_sym_extends, - STATE(1313), 1, + STATE(1298), 1, sym_class_body, - STATE(2442), 1, + STATE(1799), 1, + sym_comment, + STATE(2318), 1, sym_class_heritage, - [79444] = 6, - ACTIONS(1203), 1, + [87107] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1800), 1, sym_comment, - ACTIONS(1205), 1, + ACTIONS(2039), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [87124] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3303), 1, + ACTIONS(3254), 1, anon_sym_export, - ACTIONS(3305), 1, + ACTIONS(3256), 1, anon_sym_class, - STATE(1780), 1, + STATE(1801), 1, + sym_comment, + STATE(1865), 1, aux_sym_export_statement_repeat1, - STATE(2031), 1, + STATE(2051), 1, sym_decorator, - [79463] = 6, + [87149] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, + anon_sym_LBRACE, + ACTIONS(3252), 1, anon_sym_extends, - ACTIONS(3307), 1, + ACTIONS(3258), 1, sym_identifier, - ACTIONS(3309), 1, + STATE(1354), 1, + sym_class_body, + STATE(1802), 1, + sym_comment, + STATE(2230), 1, + sym_class_heritage, + [87174] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1803), 1, + sym_comment, + ACTIONS(2017), 5, anon_sym_LBRACE, - STATE(1072), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT, + anon_sym_LT_SLASH, + [87191] = 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(3260), 1, + anon_sym_RBRACE, + STATE(1804), 1, + sym_comment, + STATE(2011), 1, + aux_sym_object_pattern_repeat1, + [87216] = 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(3262), 1, + sym_identifier, + STATE(1354), 1, sym_class_body, - STATE(2218), 1, + STATE(1805), 1, + sym_comment, + STATE(2230), 1, sym_class_heritage, - [79482] = 2, + [87241] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1806), 1, sym_comment, - ACTIONS(2070), 5, + ACTIONS(2035), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [79493] = 5, + [87258] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1807), 1, sym_comment, - ACTIONS(1304), 1, - anon_sym_DQUOTE, - ACTIONS(1306), 1, - anon_sym_SQUOTE, - ACTIONS(3311), 1, + ACTIONS(3264), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(2717), 2, - sym__module_export_name, - sym_string, - [79510] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_AT, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - ACTIONS(3313), 2, - anon_sym_export, - anon_sym_class, - [79527] = 3, - ACTIONS(1203), 1, + [87275] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1808), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_EQ, - ACTIONS(1773), 4, + ACTIONS(1839), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_RBRACK, - [79540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [79551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 1, - sym_identifier, - ACTIONS(3323), 1, - anon_sym_LPAREN, - ACTIONS(3325), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - sym_private_property_identifier, - STATE(1328), 1, - sym_arguments, - [79570] = 2, + [87292] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1809), 1, sym_comment, - ACTIONS(2044), 5, + ACTIONS(3266), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [79581] = 6, + [87309] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 1, - anon_sym_LBRACE, - ACTIONS(3301), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3252), 1, anon_sym_extends, - ACTIONS(3329), 1, + ACTIONS(3268), 1, sym_identifier, - STATE(1313), 1, + ACTIONS(3270), 1, + anon_sym_LBRACE, + STATE(1165), 1, sym_class_body, - STATE(2442), 1, + STATE(1810), 1, + sym_comment, + STATE(2260), 1, sym_class_heritage, - [79600] = 6, + [87334] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1811), 1, sym_comment, - ACTIONS(3331), 1, - sym_identifier, - ACTIONS(3333), 1, + ACTIONS(1929), 5, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT, + anon_sym_LT_SLASH, + [87351] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1812), 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, + [87368] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3244), 1, anon_sym_GT, - ACTIONS(3335), 1, + ACTIONS(3274), 1, + sym_identifier, + ACTIONS(3276), 1, sym_jsx_identifier, - STATE(1662), 1, + STATE(1677), 1, sym_nested_identifier, - STATE(1675), 1, + STATE(1702), 1, sym_jsx_namespace_name, - [79619] = 6, - ACTIONS(3), 1, + STATE(1813), 1, sym_comment, - ACTIONS(3299), 1, + [87393] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_LBRACE, - ACTIONS(3301), 1, + ACTIONS(3252), 1, anon_sym_extends, - ACTIONS(3337), 1, + ACTIONS(3278), 1, sym_identifier, - STATE(1313), 1, + STATE(1298), 1, sym_class_body, - STATE(2442), 1, + STATE(1814), 1, + sym_comment, + STATE(2318), 1, sym_class_heritage, - [79638] = 2, + [87418] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1815), 1, sym_comment, - ACTIONS(1992), 5, + ACTIONS(1933), 5, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [79649] = 6, - ACTIONS(3), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT, + anon_sym_LT_SLASH, + [87435] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3280), 1, + anon_sym_export, + ACTIONS(3282), 1, + anon_sym_class, + STATE(1816), 1, sym_comment, - ACTIONS(3299), 1, - anon_sym_LBRACE, - ACTIONS(3301), 1, - anon_sym_extends, - ACTIONS(3339), 1, - sym_identifier, - STATE(1302), 1, - sym_class_body, - STATE(2330), 1, - sym_class_heritage, - [79668] = 2, + STATE(1865), 1, + aux_sym_export_statement_repeat1, + STATE(2051), 1, + sym_decorator, + [87460] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1817), 1, sym_comment, - ACTIONS(1992), 5, + ACTIONS(2159), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [79679] = 2, - ACTIONS(3), 1, + [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, - ACTIONS(1992), 5, - anon_sym_LBRACE, + 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, - anon_sym_SLASH_GT, - sym_identifier, - [79690] = 2, - ACTIONS(3), 1, + STATE(1819), 1, sym_comment, - ACTIONS(1992), 5, - anon_sym_LBRACE, + STATE(2228), 1, + sym_nested_identifier, + STATE(2778), 1, + sym_jsx_namespace_name, + [87523] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3290), 1, + sym_identifier, + ACTIONS(3292), 1, anon_sym_GT, + ACTIONS(3294), 1, sym_jsx_identifier, - anon_sym_SLASH_GT, + STATE(1820), 1, + sym_comment, + STATE(2334), 1, + sym_nested_identifier, + STATE(2745), 1, + sym_jsx_namespace_name, + [87548] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3296), 1, + anon_sym_EQ, + STATE(1821), 1, + sym_comment, + ACTIONS(1835), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [87567] = 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(3298), 1, sym_identifier, - [79701] = 6, - ACTIONS(1203), 1, + STATE(1354), 1, + sym_class_body, + STATE(1822), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3341), 1, - anon_sym_export, - ACTIONS(3343), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [79720] = 2, + STATE(2230), 1, + sym_class_heritage, + [87592] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1823), 1, sym_comment, - ACTIONS(3345), 5, + ACTIONS(3300), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [79731] = 6, + [87609] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 1, - anon_sym_GT, - ACTIONS(3347), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3349), 1, - sym_jsx_identifier, - STATE(1666), 1, - sym_nested_identifier, - STATE(1681), 1, - sym_jsx_namespace_name, - [79750] = 2, - ACTIONS(3), 1, + ACTIONS(3304), 1, + anon_sym_LPAREN, + ACTIONS(3306), 1, + anon_sym_LBRACK, + ACTIONS(3308), 1, + sym_private_property_identifier, + STATE(1131), 1, + sym_arguments, + STATE(1824), 1, sym_comment, - ACTIONS(3351), 5, + [87634] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [79761] = 2, + ACTIONS(3252), 1, + anon_sym_extends, + ACTIONS(3310), 1, + sym_identifier, + STATE(1354), 1, + sym_class_body, + STATE(1825), 1, + sym_comment, + STATE(2230), 1, + sym_class_heritage, + [87659] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1826), 1, sym_comment, - ACTIONS(3351), 5, + ACTIONS(3272), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [79772] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3353), 1, + [87676] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3312), 1, anon_sym_EQ, - ACTIONS(1773), 4, + STATE(1827), 1, + sym_comment, + ACTIONS(1839), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [79785] = 2, + [87695] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1828), 1, sym_comment, - ACTIONS(3351), 5, + ACTIONS(3272), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [79796] = 6, + [87712] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_LBRACE, - ACTIONS(3301), 1, + ACTIONS(3252), 1, anon_sym_extends, - ACTIONS(3356), 1, + ACTIONS(3315), 1, sym_identifier, - STATE(1302), 1, + STATE(1298), 1, sym_class_body, - STATE(2330), 1, + STATE(1829), 1, + sym_comment, + STATE(2318), 1, sym_class_heritage, - [79815] = 6, - ACTIONS(3), 1, + [87737] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3317), 1, + anon_sym_export, + ACTIONS(3319), 1, + anon_sym_class, + STATE(1830), 1, sym_comment, - ACTIONS(3299), 1, + STATE(1865), 1, + aux_sym_export_statement_repeat1, + STATE(2051), 1, + sym_decorator, + [87762] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_LBRACE, - ACTIONS(3301), 1, + ACTIONS(3252), 1, anon_sym_extends, - ACTIONS(3358), 1, + ACTIONS(3321), 1, sym_identifier, - STATE(1302), 1, + STATE(1298), 1, sym_class_body, - STATE(2330), 1, + STATE(1831), 1, + sym_comment, + STATE(2318), 1, sym_class_heritage, - [79834] = 2, + [87787] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3244), 1, + 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, - ACTIONS(3351), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [79845] = 2, + [87812] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 5, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(3252), 1, + anon_sym_extends, + ACTIONS(3327), 1, sym_identifier, - [79856] = 6, - ACTIONS(3), 1, + STATE(1354), 1, + sym_class_body, + STATE(1833), 1, sym_comment, - ACTIONS(3299), 1, + STATE(2230), 1, + sym_class_heritage, + [87837] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, anon_sym_LBRACE, - ACTIONS(3301), 1, + ACTIONS(3252), 1, anon_sym_extends, - ACTIONS(3360), 1, + ACTIONS(3329), 1, sym_identifier, - STATE(1302), 1, + STATE(1298), 1, sym_class_body, - STATE(2330), 1, + STATE(1834), 1, + sym_comment, + STATE(2318), 1, sym_class_heritage, - [79875] = 2, + [87862] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1835), 1, sym_comment, - ACTIONS(2108), 5, + ACTIONS(3272), 5, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [79886] = 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT, + anon_sym_LT_SLASH, + [87879] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1836), 1, sym_comment, - ACTIONS(3362), 5, + ACTIONS(2105), 5, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [79897] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3364), 1, - anon_sym_export, - ACTIONS(3366), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [79916] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3368), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + anon_sym_LT, + anon_sym_LT_SLASH, + [87896] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3331), 1, anon_sym_EQ, - ACTIONS(1791), 4, + STATE(1837), 1, + sym_comment, + ACTIONS(1839), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [79929] = 6, + [87915] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1838), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(3266), 5, anon_sym_LBRACE, - ACTIONS(3301), 1, - anon_sym_extends, - ACTIONS(3370), 1, - sym_identifier, - STATE(1313), 1, - sym_class_body, - STATE(2442), 1, - sym_class_heritage, - [79948] = 2, + 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, sym_comment, - ACTIONS(3372), 5, + ACTIONS(2059), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [79959] = 6, + [87974] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1841), 1, sym_comment, - ACTIONS(3301), 1, - anon_sym_extends, - ACTIONS(3309), 1, + ACTIONS(3338), 5, anon_sym_LBRACE, - ACTIONS(3374), 1, - sym_identifier, - STATE(1101), 1, - sym_class_body, - STATE(2277), 1, - sym_class_heritage, - [79978] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 1, - anon_sym_GT, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - sym_jsx_identifier, - STATE(1663), 1, - sym_nested_identifier, - STATE(1689), 1, - sym_jsx_namespace_name, - [79997] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3169), 1, - anon_sym_EQ, - STATE(2088), 1, - sym__initializer, - ACTIONS(3163), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [80012] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3380), 5, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - [80023] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 1, anon_sym_GT, - ACTIONS(3382), 1, - sym_identifier, - ACTIONS(3384), 1, sym_jsx_identifier, - STATE(1667), 1, - sym_nested_identifier, - STATE(1686), 1, - sym_jsx_namespace_name, - [80042] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 1, - anon_sym_LBRACE, - ACTIONS(3301), 1, - anon_sym_extends, - ACTIONS(3386), 1, + anon_sym_SLASH_GT, sym_identifier, - STATE(1313), 1, - sym_class_body, - STATE(2442), 1, - sym_class_heritage, - [80061] = 2, + [87991] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1842), 1, sym_comment, - ACTIONS(3345), 5, + ACTIONS(2059), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80072] = 2, + [88008] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1843), 1, + sym_comment, + ACTIONS(2017), 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, + ACTIONS(5), 1, + sym_html_comment, + STATE(1844), 1, sym_comment, - ACTIONS(1992), 5, + ACTIONS(2059), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80083] = 2, + [88042] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1845), 1, sym_comment, - ACTIONS(1992), 5, + ACTIONS(3340), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80094] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3390), 1, - anon_sym_GT, - ACTIONS(3392), 1, - sym_jsx_identifier, - STATE(2328), 1, - sym_nested_identifier, - STATE(2718), 1, - sym_jsx_namespace_name, - [80113] = 6, + [88059] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3396), 1, + ACTIONS(3344), 1, anon_sym_LPAREN, - ACTIONS(3398), 1, + ACTIONS(3346), 1, anon_sym_LBRACK, - ACTIONS(3400), 1, + ACTIONS(3348), 1, sym_private_property_identifier, - STATE(1074), 1, + STATE(1369), 1, sym_arguments, - [80132] = 2, - ACTIONS(3), 1, + STATE(1846), 1, sym_comment, - ACTIONS(2090), 5, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [80143] = 2, + [88084] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1847), 1, sym_comment, - ACTIONS(1992), 5, + ACTIONS(2039), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [80165] = 2, + [88101] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1848), 1, sym_comment, - ACTIONS(1992), 5, + ACTIONS(3350), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80176] = 2, + [88118] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3402), 5, - anon_sym_LBRACE, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3244), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(3352), 1, sym_identifier, - [80187] = 6, - ACTIONS(1203), 1, + ACTIONS(3354), 1, + sym_jsx_identifier, + STATE(1684), 1, + sym_nested_identifier, + STATE(1695), 1, + sym_jsx_namespace_name, + STATE(1849), 1, sym_comment, - ACTIONS(1205), 1, + [88143] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3404), 1, + ACTIONS(3356), 1, anon_sym_export, - ACTIONS(3406), 1, + ACTIONS(3358), 1, anon_sym_class, - STATE(1780), 1, + STATE(1850), 1, + sym_comment, + STATE(1865), 1, aux_sym_export_statement_repeat1, - STATE(2031), 1, + STATE(2051), 1, sym_decorator, - [80206] = 5, + [88168] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1851), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(2059), 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(1306), 1, + ACTIONS(1310), 1, anon_sym_SQUOTE, - ACTIONS(3408), 1, + ACTIONS(3072), 1, sym_identifier, - STATE(2403), 2, - sym__module_export_name, + STATE(1852), 1, + sym_comment, + STATE(1883), 1, sym_string, - [80223] = 6, + STATE(2340), 1, + sym__module_export_name, + [88210] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1853), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(1929), 5, anon_sym_LBRACE, - ACTIONS(3301), 1, - anon_sym_extends, - ACTIONS(3410), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(1313), 1, - sym_class_body, - STATE(2442), 1, - sym_class_heritage, - [80242] = 6, + [88227] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1854), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(1933), 5, anon_sym_LBRACE, - ACTIONS(3301), 1, - anon_sym_extends, - ACTIONS(3412), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(1302), 1, - sym_class_body, - STATE(2330), 1, - sym_class_heritage, - [80261] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3416), 1, - anon_sym_in, - ACTIONS(3418), 1, - anon_sym_of, - ACTIONS(3414), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [80276] = 6, + [88244] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(3420), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3250), 1, + anon_sym_LBRACE, + ACTIONS(3252), 1, + anon_sym_extends, + ACTIONS(3360), 1, sym_identifier, - ACTIONS(3422), 1, - anon_sym_GT, - ACTIONS(3424), 1, - sym_jsx_identifier, - STATE(2234), 1, - sym_nested_identifier, - STATE(2751), 1, - sym_jsx_namespace_name, - [80295] = 6, - ACTIONS(1203), 1, + STATE(1298), 1, + sym_class_body, + STATE(1855), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_EQ, - ACTIONS(3426), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_RBRACE, - STATE(1990), 1, - aux_sym_object_pattern_repeat1, - [80314] = 2, + STATE(2318), 1, + sym_class_heritage, + [88269] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1856), 1, sym_comment, - ACTIONS(3430), 5, + ACTIONS(3362), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80325] = 2, - ACTIONS(3), 1, + [88286] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1857), 1, sym_comment, - ACTIONS(3432), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [80336] = 2, + ACTIONS(3364), 5, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_AT, + [88303] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1858), 1, sym_comment, - ACTIONS(3434), 5, + ACTIONS(3366), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [80347] = 2, + [88320] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1859), 1, sym_comment, - ACTIONS(2086), 5, + ACTIONS(3368), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80358] = 2, + [88337] = 6, + 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, + anon_sym_COMMA, + anon_sym_SEMI, + [88358] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1861), 1, sym_comment, - ACTIONS(2090), 5, + ACTIONS(2105), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [80369] = 2, + [88375] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 5, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3252), 1, + anon_sym_extends, + ACTIONS(3270), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [80380] = 2, + ACTIONS(3376), 1, + sym_identifier, + STATE(1093), 1, + sym_class_body, + STATE(1862), 1, + sym_comment, + STATE(2343), 1, + sym_class_heritage, + [88400] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1863), 1, sym_comment, - ACTIONS(3436), 5, + ACTIONS(3366), 5, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, anon_sym_LT, anon_sym_LT_SLASH, - [80391] = 6, + [88417] = 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(3378), 1, + sym_identifier, + STATE(1354), 1, + sym_class_body, + STATE(1864), 1, + sym_comment, + STATE(2230), 1, + sym_class_heritage, + [88442] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3382), 1, + anon_sym_AT, + STATE(2051), 1, + sym_decorator, + ACTIONS(3380), 2, + anon_sym_export, + anon_sym_class, + STATE(1865), 2, sym_comment, - ACTIONS(3438), 1, + aux_sym_export_statement_repeat1, + [88463] = 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, sym_identifier, - ACTIONS(3440), 1, - anon_sym_GT, - ACTIONS(3442), 1, - sym_jsx_identifier, - STATE(2349), 1, - sym_nested_identifier, - STATE(2715), 1, - sym_jsx_namespace_name, - [80410] = 6, - ACTIONS(1203), 1, + STATE(1866), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_COLON, - ACTIONS(3147), 1, - anon_sym_EQ, - ACTIONS(3426), 1, - anon_sym_COMMA, - ACTIONS(3444), 1, - anon_sym_RBRACE, - STATE(1992), 1, - aux_sym_object_pattern_repeat1, - [80429] = 2, + STATE(1883), 1, + sym_string, + STATE(2685), 1, + sym__module_export_name, + [88488] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1867), 1, sym_comment, - ACTIONS(3402), 5, + ACTIONS(2059), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [80440] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3147), 1, - anon_sym_EQ, - ACTIONS(2729), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(3446), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [80455] = 2, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [88505] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1868), 1, sym_comment, - ACTIONS(1936), 5, + ACTIONS(2059), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [80466] = 2, + [88522] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1869), 1, sym_comment, - ACTIONS(2108), 5, + ACTIONS(2059), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - anon_sym_LT, - anon_sym_LT_SLASH, - [80477] = 6, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3449), 1, - anon_sym_export, - ACTIONS(3451), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [80496] = 6, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [88539] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1870), 1, sym_comment, - ACTIONS(3299), 1, + ACTIONS(2059), 5, anon_sym_LBRACE, - ACTIONS(3301), 1, - anon_sym_extends, - ACTIONS(3453), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(1302), 1, - sym_class_body, - STATE(2330), 1, - sym_class_heritage, - [80515] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1773), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [80526] = 5, + [88556] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3385), 1, + sym_identifier, + ACTIONS(3387), 1, + anon_sym_GT, + ACTIONS(3389), 1, + sym_jsx_identifier, + STATE(1871), 1, sym_comment, - ACTIONS(3455), 1, - sym__glimmer_template_content, - ACTIONS(3457), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1083), 1, - sym_glimmer_closing_tag, - STATE(2035), 1, - aux_sym_glimmer_template_repeat1, - [80542] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2243), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [80552] = 5, - ACTIONS(1203), 1, + STATE(2265), 1, + sym_nested_identifier, + STATE(2771), 1, + sym_jsx_namespace_name, + [88581] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3391), 1, + sym_identifier, + ACTIONS(3393), 1, + anon_sym_GT, + ACTIONS(3395), 1, + sym_jsx_identifier, + STATE(1872), 1, sym_comment, - ACTIONS(1205), 1, + STATE(2382), 1, + sym_nested_identifier, + STATE(2740), 1, + sym_jsx_namespace_name, + [88606] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3459), 1, + ACTIONS(3397), 1, anon_sym_class, - STATE(1780), 1, + STATE(1865), 1, aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [80568] = 2, - ACTIONS(1203), 1, + STATE(1873), 1, sym_comment, - ACTIONS(2237), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [80578] = 2, - ACTIONS(1203), 1, + STATE(2051), 1, + sym_decorator, + [88628] = 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(1371), 1, + sym_glimmer_closing_tag, + STATE(1874), 1, sym_comment, - ACTIONS(2248), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [80588] = 5, - ACTIONS(1203), 1, + STATE(2111), 1, + aux_sym_glimmer_template_repeat1, + [88650] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3403), 1, + sym_identifier, + ACTIONS(3405), 1, + anon_sym_STAR, + ACTIONS(3407), 1, + anon_sym_LPAREN, + STATE(1875), 1, sym_comment, - ACTIONS(3461), 1, + STATE(2221), 1, + sym_formal_parameters, + [88672] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3409), 1, anon_sym_LBRACE, - ACTIONS(3463), 1, + ACTIONS(3411), 1, anon_sym_extends, - STATE(193), 1, + STATE(1109), 1, sym_class_body, - STATE(2225), 1, + STATE(1876), 1, + sym_comment, + STATE(2305), 1, sym_class_heritage, - [80604] = 4, + [88694] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3399), 1, + sym__glimmer_template_content, + ACTIONS(3413), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(1557), 1, + sym_glimmer_closing_tag, + STATE(1877), 1, sym_comment, - ACTIONS(3465), 1, - anon_sym_SQUOTE, - STATE(1856), 1, - aux_sym_string_repeat2, - ACTIONS(3467), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [80618] = 4, - ACTIONS(3), 1, + STATE(1988), 1, + aux_sym_glimmer_template_repeat1, + [88716] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(1878), 1, + sym_comment, + STATE(1913), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3417), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [88736] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(1879), 1, sym_comment, - ACTIONS(3470), 1, + STATE(1913), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3419), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [88756] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3421), 1, anon_sym_DQUOTE, - STATE(1857), 1, + STATE(1880), 1, + sym_comment, + STATE(1899), 1, aux_sym_string_repeat1, - ACTIONS(3472), 2, + ACTIONS(3423), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [80632] = 5, - ACTIONS(1203), 1, + [88776] = 7, + 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, sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3475), 1, - anon_sym_LBRACE, - STATE(568), 1, - sym_class_body, - STATE(2353), 1, - sym_class_heritage, - [80648] = 4, + STATE(2051), 1, + sym_decorator, + [88798] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3421), 1, anon_sym_SQUOTE, - STATE(1856), 1, + STATE(1882), 1, + sym_comment, + STATE(1901), 1, aux_sym_string_repeat2, - ACTIONS(3479), 2, + ACTIONS(3425), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [80662] = 4, - ACTIONS(3), 1, + [88818] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1883), 1, sym_comment, - ACTIONS(3481), 1, - anon_sym_DQUOTE, - STATE(1857), 1, - aux_sym_string_repeat1, - ACTIONS(3483), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [80676] = 4, - ACTIONS(3), 1, + ACTIONS(3427), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [88834] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3429), 1, + anon_sym_COMMA, + ACTIONS(2299), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1884), 2, sym_comment, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - STATE(1857), 1, - aux_sym_string_repeat1, - ACTIONS(3483), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [80690] = 5, - ACTIONS(1203), 1, + aux_sym_array_repeat1, + [88852] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1885), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(2765), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(3432), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [88870] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3485), 1, + ACTIONS(3434), 1, anon_sym_LBRACE, - STATE(192), 1, + STATE(828), 1, sym_class_body, - STATE(2341), 1, + STATE(1886), 1, + sym_comment, + STATE(2237), 1, sym_class_heritage, - [80706] = 4, - ACTIONS(1203), 1, + [88892] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2236), 1, + anon_sym_COMMA, + STATE(1887), 1, + sym_comment, + STATE(1895), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(3176), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [88912] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, + anon_sym_from, + STATE(1888), 1, sym_comment, - ACTIONS(3487), 1, + STATE(2239), 1, + sym__from_clause, + ACTIONS(3438), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [88932] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1889), 1, + sym_comment, + STATE(1904), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3489), 2, + ACTIONS(3440), 2, sym__automatic_semicolon, anon_sym_SEMI, - [80720] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3487), 1, + [88952] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1890), 1, + sym_comment, + STATE(1905), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3491), 2, + ACTIONS(3442), 2, sym__automatic_semicolon, anon_sym_SEMI, - [80734] = 4, + [88972] = 5, 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, sym_comment, - ACTIONS(3481), 1, + aux_sym_string_repeat1, + [88990] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3449), 1, anon_sym_SQUOTE, - STATE(1856), 1, - aux_sym_string_repeat2, - ACTIONS(3479), 2, + ACTIONS(3451), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [80748] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3493), 1, - anon_sym_LBRACE, - STATE(213), 1, - sym_class_body, - STATE(2399), 1, - sym_class_heritage, - [80764] = 2, - ACTIONS(1203), 1, + STATE(1892), 2, sym_comment, - ACTIONS(2729), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [80774] = 5, - ACTIONS(3), 1, + aux_sym_string_repeat2, + [89008] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1893), 1, sym_comment, - ACTIONS(3495), 1, - sym_identifier, - ACTIONS(3497), 1, + ACTIONS(3454), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [89024] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3456), 1, anon_sym_STAR, - ACTIONS(3499), 1, - anon_sym_LPAREN, - STATE(2390), 1, - sym_formal_parameters, - [80790] = 4, - ACTIONS(1203), 1, + ACTIONS(3458), 1, + anon_sym_LBRACE, + STATE(1894), 1, sym_comment, - ACTIONS(3487), 1, + STATE(2762), 2, + sym_namespace_import, + sym_named_imports, + [89044] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3460), 1, anon_sym_COMMA, - STATE(1899), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3501), 2, + ACTIONS(2071), 2, sym__automatic_semicolon, anon_sym_SEMI, - [80804] = 4, - ACTIONS(1203), 1, + STATE(1895), 2, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1898), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3503), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [80818] = 5, - ACTIONS(1203), 1, + aux_sym_sequence_expression_repeat1, + [89062] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3463), 1, + anon_sym_DQUOTE, + STATE(1896), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3505), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [80834] = 4, + STATE(1967), 1, + aux_sym_string_repeat1, + ACTIONS(3423), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [89082] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3463), 1, + anon_sym_SQUOTE, + STATE(1897), 1, + sym_comment, + STATE(1968), 1, + aux_sym_string_repeat2, + ACTIONS(3425), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [89102] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, + anon_sym_extends, + ACTIONS(3465), 1, + anon_sym_LBRACE, + STATE(182), 1, + sym_class_body, + STATE(1898), 1, sym_comment, - ACTIONS(3507), 1, + STATE(2256), 1, + sym_class_heritage, + [89124] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3467), 1, anon_sym_DQUOTE, - STATE(1941), 1, + STATE(1891), 1, aux_sym_string_repeat1, - ACTIONS(3509), 2, + STATE(1899), 1, + sym_comment, + ACTIONS(3423), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [80848] = 4, - ACTIONS(3), 1, + [89144] = 7, + 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(219), 1, + sym_class_body, + STATE(1900), 1, sym_comment, - ACTIONS(3507), 1, + STATE(2336), 1, + sym_class_heritage, + [89166] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3467), 1, anon_sym_SQUOTE, - STATE(1942), 1, + STATE(1892), 1, aux_sym_string_repeat2, - ACTIONS(3511), 2, + STATE(1901), 1, + sym_comment, + ACTIONS(3425), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [80862] = 5, - ACTIONS(1203), 1, + [89186] = 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, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3425), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [89206] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3513), 1, + ACTIONS(3473), 1, anon_sym_LBRACE, - STATE(691), 1, + STATE(532), 1, sym_class_body, - STATE(2414), 1, + STATE(1903), 1, + sym_comment, + STATE(2269), 1, sym_class_heritage, - [80878] = 4, - ACTIONS(1203), 1, + [89228] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(1904), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - STATE(2208), 1, - sym__from_clause, - ACTIONS(3517), 2, + STATE(1913), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3475), 2, sym__automatic_semicolon, anon_sym_SEMI, - [80892] = 5, - ACTIONS(1203), 1, + [89248] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(1905), 1, sym_comment, - ACTIONS(3461), 1, - anon_sym_LBRACE, - ACTIONS(3463), 1, + STATE(1913), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3477), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89268] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - STATE(172), 1, + ACTIONS(3434), 1, + anon_sym_LBRACE, + STATE(711), 1, sym_class_body, - STATE(2247), 1, - sym_class_heritage, - [80908] = 5, - ACTIONS(3), 1, + STATE(1906), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3519), 1, - sym_identifier, - ACTIONS(3521), 1, - anon_sym_STAR, - STATE(2306), 1, - sym_formal_parameters, - [80924] = 5, + STATE(2348), 1, + sym_class_heritage, + [89290] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3399), 1, sym__glimmer_template_content, - ACTIONS(3525), 1, + ACTIONS(3479), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(1567), 1, + STATE(1132), 1, sym_glimmer_closing_tag, - STATE(1961), 1, - aux_sym_glimmer_template_repeat1, - [80940] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_STAR, - STATE(2306), 1, - sym_formal_parameters, - [80956] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - sym_identifier, - ACTIONS(3533), 1, - anon_sym_STAR, - STATE(2306), 1, - sym_formal_parameters, - [80972] = 4, - ACTIONS(1203), 1, + STATE(1907), 1, sym_comment, - ACTIONS(2729), 1, + STATE(1964), 1, + aux_sym_glimmer_template_repeat1, + [89312] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2765), 1, anon_sym_COLON, - ACTIONS(3147), 1, + ACTIONS(3082), 1, anon_sym_EQ, - ACTIONS(3535), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [80986] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(3537), 1, - sym__glimmer_template_content, - STATE(1145), 1, - sym_glimmer_closing_tag, - STATE(1850), 1, - aux_sym_glimmer_template_repeat1, - [81002] = 3, - ACTIONS(1203), 1, + STATE(1908), 1, sym_comment, - ACTIONS(2729), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(3539), 2, + ACTIONS(3481), 2, anon_sym_COMMA, anon_sym_RBRACE, - [81014] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3343), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [81030] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(1791), 3, + [89332] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [81042] = 4, - ACTIONS(1203), 1, + STATE(1909), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - STATE(2256), 1, - sym__from_clause, - ACTIONS(3543), 2, + STATE(1913), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3483), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81056] = 5, + [89352] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3471), 1, + anon_sym_DQUOTE, + STATE(1891), 1, + aux_sym_string_repeat1, + STATE(1910), 1, sym_comment, - ACTIONS(3455), 1, - sym__glimmer_template_content, - ACTIONS(3545), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1309), 1, - sym_glimmer_closing_tag, - STATE(2035), 1, - aux_sym_glimmer_template_repeat1, - [81072] = 5, - ACTIONS(1203), 1, + ACTIONS(3423), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [89372] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, + anon_sym_extends, + ACTIONS(3465), 1, + anon_sym_LBRACE, + STATE(196), 1, + sym_class_body, + STATE(1911), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3366), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [81088] = 4, - ACTIONS(1203), 1, + STATE(2278), 1, + sym_class_heritage, + [89394] = 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(585), 1, + sym_class_body, + STATE(1912), 1, + sym_comment, + STATE(2281), 1, + sym_class_heritage, + [89416] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3485), 1, + anon_sym_COMMA, + ACTIONS(3488), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1913), 2, sym_comment, - ACTIONS(3515), 1, + aux_sym_variable_declaration_repeat1, + [89434] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2251), 1, + STATE(1914), 1, + sym_comment, + STATE(2170), 1, sym__from_clause, - ACTIONS(3547), 2, + ACTIONS(3490), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81102] = 4, + [89454] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3492), 1, + anon_sym_DQUOTE, + STATE(1915), 1, sym_comment, - ACTIONS(3549), 1, + STATE(1925), 1, + aux_sym_string_repeat1, + ACTIONS(3423), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [89474] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3492), 1, anon_sym_SQUOTE, - STATE(1865), 1, + STATE(1916), 1, + sym_comment, + STATE(1926), 1, aux_sym_string_repeat2, - ACTIONS(3551), 2, + ACTIONS(3425), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [81116] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3553), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [81132] = 5, + [89494] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3555), 1, + ACTIONS(3494), 1, sym_identifier, - ACTIONS(3557), 1, + ACTIONS(3496), 1, anon_sym_STAR, - STATE(2390), 1, + STATE(1917), 1, + sym_comment, + STATE(2200), 1, sym_formal_parameters, - [81148] = 4, - ACTIONS(3), 1, + [89516] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, + anon_sym_from, + STATE(1918), 1, sym_comment, - ACTIONS(3549), 1, - anon_sym_DQUOTE, - STATE(1860), 1, - aux_sym_string_repeat1, - ACTIONS(3559), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [81162] = 5, - ACTIONS(1203), 1, + STATE(2357), 1, + sym__from_clause, + ACTIONS(3498), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89536] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3409), 1, + anon_sym_LBRACE, + ACTIONS(3411), 1, + anon_sym_extends, + STATE(1099), 1, + sym_class_body, + STATE(1919), 1, sym_comment, - ACTIONS(3561), 1, + STATE(2424), 1, + sym_class_heritage, + [89558] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - ACTIONS(3563), 1, - anon_sym_RPAREN, - ACTIONS(3565), 1, - anon_sym_EQ, - STATE(2070), 1, - aux_sym_formal_parameters_repeat1, - [81178] = 5, - ACTIONS(1203), 1, + STATE(1920), 1, sym_comment, - ACTIONS(3463), 1, + STATE(1928), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3500), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89578] = 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, + sym_comment, + ACTIONS(3502), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89598] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3567), 1, + ACTIONS(3469), 1, anon_sym_LBRACE, - STATE(611), 1, + STATE(208), 1, sym_class_body, - STATE(2238), 1, + STATE(1922), 1, + sym_comment, + STATE(2193), 1, sym_class_heritage, - [81194] = 5, - ACTIONS(1203), 1, + [89620] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1923), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3504), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [89636] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3569), 1, + ACTIONS(3506), 1, anon_sym_LBRACE, - STATE(1318), 1, + STATE(186), 1, sym_class_body, - STATE(2177), 1, + STATE(1924), 1, + sym_comment, + STATE(2374), 1, sym_class_heritage, - [81210] = 5, + [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, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3571), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_STAR, - STATE(2390), 1, - sym_formal_parameters, - [81226] = 4, - ACTIONS(1203), 1, + ACTIONS(3423), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [89678] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3508), 1, + anon_sym_SQUOTE, + STATE(1892), 1, + aux_sym_string_repeat2, + STATE(1926), 1, sym_comment, - ACTIONS(3487), 1, + 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, + sym_comment, + STATE(2386), 1, + sym_class_heritage, + [89720] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1913), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3575), 2, + STATE(1928), 1, + sym_comment, + ACTIONS(3512), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81240] = 4, - ACTIONS(1203), 1, + [89740] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(1929), 1, sym_comment, - ACTIONS(3487), 1, + STATE(1993), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3514), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89760] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1930), 1, + sym_comment, + STATE(1994), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3577), 2, + ACTIONS(3516), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81254] = 5, - ACTIONS(1203), 1, + [89780] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1931), 1, sym_comment, - ACTIONS(3463), 1, + 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(3485), 1, + ACTIONS(3506), 1, anon_sym_LBRACE, - STATE(164), 1, + STATE(177), 1, sym_class_body, - STATE(2362), 1, - sym_class_heritage, - [81270] = 5, - ACTIONS(1203), 1, + STATE(1932), 1, sym_comment, - ACTIONS(3463), 1, + STATE(2395), 1, + sym_class_heritage, + [89818] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3475), 1, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(651), 1, sym_class_body, - STATE(2365), 1, + STATE(1933), 1, + sym_comment, + STATE(2398), 1, sym_class_heritage, - [81286] = 2, - ACTIONS(1203), 1, + [89840] = 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(3524), 1, + anon_sym_RBRACK, + STATE(1934), 1, sym_comment, - ACTIONS(2352), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + STATE(2133), 1, + aux_sym_array_pattern_repeat1, + [89862] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3526), 1, anon_sym_EQ, - [81296] = 4, - ACTIONS(1203), 1, + STATE(1935), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3579), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [81310] = 4, - ACTIONS(1203), 1, + STATE(2500), 1, + sym__initializer, + ACTIONS(3114), 2, + anon_sym_in, + anon_sym_of, + [89882] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3528), 1, + anon_sym_DQUOTE, + STATE(1936), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1966), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3581), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [81324] = 5, - ACTIONS(1203), 1, + STATE(1942), 1, + aux_sym_string_repeat1, + ACTIONS(3423), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [89902] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3528), 1, + anon_sym_SQUOTE, + STATE(1937), 1, sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3583), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [81340] = 4, - ACTIONS(1203), 1, + STATE(1943), 1, + aux_sym_string_repeat2, + ACTIONS(3425), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [89922] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, + anon_sym_from, + STATE(1938), 1, sym_comment, - ACTIONS(3487), 1, + STATE(2460), 1, + sym__from_clause, + ACTIONS(3530), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [89942] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1864), 1, + STATE(1939), 1, + sym_comment, + STATE(1945), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3585), 2, + ACTIONS(3532), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81354] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3487), 1, + [89962] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1863), 1, + STATE(1940), 1, + sym_comment, + STATE(1946), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3587), 2, + ACTIONS(3534), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81368] = 5, - ACTIONS(3), 1, + [89982] = 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(153), 1, + sym_class_body, + STATE(1941), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3589), 1, - sym_identifier, - ACTIONS(3591), 1, - anon_sym_STAR, - STATE(2306), 1, - sym_formal_parameters, - [81384] = 5, + STATE(2473), 1, + sym_class_heritage, + [90004] = 6, 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, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3593), 1, - sym_identifier, - ACTIONS(3595), 1, - anon_sym_STAR, - STATE(2231), 1, - sym_formal_parameters, - [81400] = 5, - ACTIONS(1203), 1, + ACTIONS(3423), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [90024] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3538), 1, + anon_sym_SQUOTE, + STATE(1892), 1, + aux_sym_string_repeat2, + STATE(1943), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3425), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [90044] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3597), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(1075), 1, + STATE(522), 1, sym_class_body, - STATE(2374), 1, - sym_class_heritage, - [81416] = 4, - ACTIONS(1203), 1, + STATE(1944), 1, sym_comment, - ACTIONS(3599), 1, + STATE(2481), 1, + sym_class_heritage, + [90066] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1913), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3602), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [81430] = 4, - ACTIONS(1203), 1, + STATE(1945), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - STATE(2324), 1, - sym__from_clause, - ACTIONS(3604), 2, + ACTIONS(3542), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81444] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3487), 1, + [90086] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1913), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [81458] = 4, - ACTIONS(1203), 1, + STATE(1946), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3608), 2, + ACTIONS(3544), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81472] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3610), 1, - anon_sym_SQUOTE, - STATE(1856), 1, - aux_sym_string_repeat2, - ACTIONS(3479), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [81486] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3463), 1, + [90106] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3597), 1, + ACTIONS(3536), 1, anon_sym_LBRACE, - STATE(1081), 1, + STATE(152), 1, sym_class_body, - STATE(2475), 1, + STATE(1947), 1, + sym_comment, + STATE(2490), 1, sym_class_heritage, - [81502] = 5, - ACTIONS(1203), 1, + [90128] = 7, + 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(482), 1, + sym_class_body, + STATE(1948), 1, sym_comment, - ACTIONS(1205), 1, + STATE(2493), 1, + sym_class_heritage, + [90150] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3305), 1, + ACTIONS(3546), 1, anon_sym_class, - STATE(1780), 1, + STATE(1865), 1, aux_sym_export_statement_repeat1, - STATE(2031), 1, + STATE(1949), 1, + sym_comment, + STATE(2051), 1, sym_decorator, - [81518] = 4, - ACTIONS(1203), 1, + [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, + sym_comment, + STATE(2021), 1, + aux_sym_array_pattern_repeat1, + [90194] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 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, - ACTIONS(3487), 1, + 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(1914), 1, + STATE(1952), 1, + sym_comment, + STATE(1954), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3612), 2, + ACTIONS(3554), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81532] = 2, - ACTIONS(1203), 1, + [90236] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, + anon_sym_COMMA, + STATE(1953), 1, sym_comment, - ACTIONS(1938), 4, + STATE(1955), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(3556), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [81542] = 4, - ACTIONS(1203), 1, + [90256] = 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(1954), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3558), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90276] = 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, - ACTIONS(3614), 2, + STATE(1955), 1, + sym_comment, + ACTIONS(3560), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81556] = 5, + [90296] = 7, 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, sym_comment, - ACTIONS(3545), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(3616), 1, - sym__glimmer_template_content, - STATE(1332), 1, - sym_glimmer_closing_tag, - STATE(1887), 1, - aux_sym_glimmer_template_repeat1, - [81572] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3618), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [81588] = 5, - ACTIONS(1203), 1, + STATE(2287), 1, + sym_formal_parameters, + [90318] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1957), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(2161), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [90334] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3620), 1, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(2068), 1, + STATE(1319), 1, sym_class_body, - STATE(2198), 1, + STATE(1958), 1, + sym_comment, + STATE(2220), 1, sym_class_heritage, - [81604] = 5, - ACTIONS(1203), 1, + [90356] = 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, sym_comment, - ACTIONS(3565), 1, - anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3568), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90376] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - ACTIONS(3624), 1, - anon_sym_RBRACK, - STATE(1985), 1, - aux_sym_array_pattern_repeat1, - [81620] = 4, - ACTIONS(3), 1, + STATE(1879), 1, + aux_sym_variable_declaration_repeat1, + STATE(1960), 1, sym_comment, - ACTIONS(3610), 1, - anon_sym_DQUOTE, - STATE(1857), 1, - aux_sym_string_repeat1, - ACTIONS(3483), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [81634] = 5, - ACTIONS(1203), 1, + ACTIONS(3570), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [90396] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1961), 1, sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1322), 1, - sym_class_body, - STATE(2202), 1, - sym_class_heritage, - [81650] = 5, - ACTIONS(3), 1, + ACTIONS(2468), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [90412] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1962), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(2037), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3626), 1, - sym_identifier, - ACTIONS(3628), 1, - anon_sym_STAR, - STATE(2390), 1, - sym_formal_parameters, - [81666] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_EQ, + [90428] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3572), 1, + anon_sym_EQ, + STATE(1963), 1, sym_comment, - ACTIONS(3630), 1, - anon_sym_SQUOTE, - STATE(1915), 1, - aux_sym_string_repeat2, - ACTIONS(3632), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [81680] = 5, + ACTIONS(1835), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [90446] = 7, 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, sym_comment, - ACTIONS(3499), 1, + STATE(2111), 1, + aux_sym_glimmer_template_repeat1, + [90468] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1965), 1, + sym_comment, + ACTIONS(2765), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3634), 1, - sym_identifier, - ACTIONS(3636), 1, - anon_sym_STAR, - STATE(2271), 1, - sym_formal_parameters, - [81696] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_EQ, + [90484] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1966), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(2347), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [90500] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3574), 1, anon_sym_DQUOTE, - STATE(1949), 1, + STATE(1891), 1, aux_sym_string_repeat1, - ACTIONS(3640), 2, + STATE(1967), 1, + sym_comment, + ACTIONS(3423), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [81710] = 4, + [90520] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3638), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3574), 1, anon_sym_SQUOTE, - STATE(1950), 1, + STATE(1892), 1, aux_sym_string_repeat2, - ACTIONS(3642), 2, + STATE(1968), 1, + sym_comment, + ACTIONS(3425), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [81724] = 5, - ACTIONS(1203), 1, + [90540] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1969), 1, sym_comment, - ACTIONS(3463), 1, + 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(3569), 1, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1317), 1, + STATE(1351), 1, sym_class_body, - STATE(2233), 1, - sym_class_heritage, - [81740] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3406), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [81756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3644), 1, - anon_sym_SQUOTE, - STATE(1859), 1, - aux_sym_string_repeat2, - ACTIONS(3646), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [81770] = 4, - ACTIONS(3), 1, + STATE(1970), 1, sym_comment, - ACTIONS(3644), 1, - anon_sym_DQUOTE, - STATE(1861), 1, - aux_sym_string_repeat1, - ACTIONS(3648), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [81784] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3650), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [81794] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_AT, - ACTIONS(3652), 1, - anon_sym_class, - STATE(1780), 1, - aux_sym_export_statement_repeat1, - STATE(2031), 1, - sym_decorator, - [81810] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3515), 1, + STATE(2582), 1, + sym_class_heritage, + [90578] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2426), 1, + STATE(1971), 1, + sym_comment, + STATE(2195), 1, sym__from_clause, - ACTIONS(3654), 2, + ACTIONS(3576), 2, sym__automatic_semicolon, anon_sym_SEMI, - [81824] = 5, + [90598] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3656), 1, + ACTIONS(3578), 1, sym_identifier, - ACTIONS(3658), 1, + ACTIONS(3580), 1, anon_sym_STAR, - STATE(2306), 1, - sym_formal_parameters, - [81840] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1953), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3660), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [81854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3662), 1, - anon_sym_DQUOTE, - STATE(1857), 1, - aux_sym_string_repeat1, - ACTIONS(3483), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [81868] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3662), 1, - anon_sym_SQUOTE, - STATE(1856), 1, - aux_sym_string_repeat2, - ACTIONS(3479), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [81882] = 4, - ACTIONS(1203), 1, + STATE(1972), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1956), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3664), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [81896] = 5, - ACTIONS(1203), 1, + STATE(2294), 1, + sym_formal_parameters, + [90620] = 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(1343), 1, + sym_class_body, + STATE(1973), 1, sym_comment, - ACTIONS(1205), 1, + STATE(2476), 1, + sym_class_heritage, + [90642] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3451), 1, + ACTIONS(3582), 1, anon_sym_class, - STATE(1780), 1, + STATE(1865), 1, aux_sym_export_statement_repeat1, - STATE(2031), 1, + STATE(1974), 1, + sym_comment, + STATE(2051), 1, sym_decorator, - [81912] = 5, - ACTIONS(1203), 1, + [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, sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3513), 1, - anon_sym_LBRACE, - STATE(838), 1, - sym_class_body, - STATE(2334), 1, - sym_class_heritage, - [81928] = 5, + STATE(2051), 1, + sym_decorator, + [90686] = 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, sym_comment, - ACTIONS(3499), 1, + [90708] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3666), 1, + ACTIONS(3584), 1, sym_identifier, - ACTIONS(3668), 1, + ACTIONS(3586), 1, anon_sym_STAR, - STATE(2306), 1, + STATE(1977), 1, + sym_comment, + STATE(2200), 1, sym_formal_parameters, - [81944] = 5, - ACTIONS(1203), 1, + [90730] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3256), 1, + anon_sym_class, + STATE(1865), 1, + aux_sym_export_statement_repeat1, + STATE(1978), 1, sym_comment, - ACTIONS(3463), 1, + STATE(2051), 1, + sym_decorator, + [90752] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3670), 1, + ACTIONS(3588), 1, anon_sym_LBRACE, - STATE(152), 1, + STATE(1979), 1, + sym_comment, + STATE(2028), 1, sym_class_body, - STATE(2439), 1, + STATE(2571), 1, sym_class_heritage, - [81960] = 5, + [90774] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3672), 1, + ACTIONS(3590), 1, sym_identifier, - ACTIONS(3674), 1, + ACTIONS(3592), 1, anon_sym_STAR, - STATE(2390), 1, - sym_formal_parameters, - [81976] = 4, - ACTIONS(3), 1, + STATE(1980), 1, sym_comment, - ACTIONS(3676), 1, - anon_sym_DQUOTE, - STATE(1857), 1, - aux_sym_string_repeat1, - ACTIONS(3483), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [81990] = 4, + STATE(2200), 1, + sym_formal_parameters, + [90796] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3676), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3594), 1, anon_sym_SQUOTE, - STATE(1856), 1, + STATE(1902), 1, aux_sym_string_repeat2, - ACTIONS(3479), 2, + STATE(1981), 1, + sym_comment, + ACTIONS(3425), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [82004] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_finally, - STATE(2259), 1, - sym_finally_clause, - ACTIONS(1463), 2, - anon_sym_else, - anon_sym_while, - [82018] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3463), 1, + [90816] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3678), 1, + ACTIONS(3588), 1, anon_sym_LBRACE, - STATE(479), 1, - sym_class_body, - STATE(2447), 1, - sym_class_heritage, - [82034] = 4, - ACTIONS(1203), 1, + STATE(1982), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3680), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [82048] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3620), 1, - anon_sym_LBRACE, - STATE(2008), 1, + STATE(2039), 1, sym_class_body, - STATE(2216), 1, + STATE(2508), 1, sym_class_heritage, - [82064] = 4, + [90838] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3630), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3594), 1, anon_sym_DQUOTE, - STATE(1925), 1, + STATE(1910), 1, aux_sym_string_repeat1, - ACTIONS(3682), 2, + STATE(1983), 1, + sym_comment, + ACTIONS(3423), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [82078] = 4, - ACTIONS(1203), 1, + [90858] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3282), 1, + anon_sym_class, + STATE(1865), 1, + aux_sym_export_statement_repeat1, + STATE(1984), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3684), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [82092] = 2, - ACTIONS(1203), 1, + STATE(2051), 1, + sym_decorator, + [90880] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1985), 1, sym_comment, - ACTIONS(1986), 4, - anon_sym_RBRACE, + ACTIONS(2317), 4, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [82102] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3493), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_class_body, - STATE(2304), 1, - sym_class_heritage, - [82118] = 5, - ACTIONS(1203), 1, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [90896] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + 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, sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3670), 1, - anon_sym_LBRACE, - STATE(158), 1, - sym_class_body, - STATE(2456), 1, - sym_class_heritage, - [82134] = 5, - ACTIONS(1203), 1, + STATE(2294), 1, + sym_formal_parameters, + [90918] = 7, + 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, sym_comment, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3678), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_class_body, - STATE(2459), 1, - sym_class_heritage, - [82150] = 5, + STATE(2051), 1, + sym_decorator, + [90940] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3399), 1, sym__glimmer_template_content, - ACTIONS(3525), 1, + ACTIONS(3413), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(1565), 1, + STATE(1574), 1, sym_glimmer_closing_tag, - STATE(2035), 1, - aux_sym_glimmer_template_repeat1, - [82166] = 4, - ACTIONS(1203), 1, + STATE(1988), 1, sym_comment, - ACTIONS(3686), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_array_repeat1, - ACTIONS(2226), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [82180] = 4, - ACTIONS(1203), 1, + STATE(2111), 1, + aux_sym_glimmer_template_repeat1, + [90962] = 7, + ACTIONS(3), 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, sym_comment, - ACTIONS(3689), 1, - anon_sym_EQ, - STATE(2514), 1, - sym__initializer, - ACTIONS(3165), 2, - anon_sym_in, - anon_sym_of, - [82194] = 4, - ACTIONS(1203), 1, + STATE(2294), 1, + sym_formal_parameters, + [90984] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, + anon_sym_AT, + ACTIONS(3604), 1, + anon_sym_class, + STATE(1865), 1, + aux_sym_export_statement_repeat1, + STATE(1990), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1968), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3691), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [82208] = 4, - ACTIONS(1203), 1, + STATE(2051), 1, + sym_decorator, + [91006] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3192), 1, + anon_sym_finally, + STATE(1991), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3693), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [82222] = 4, - ACTIONS(1203), 1, + STATE(2288), 1, + sym_finally_clause, + ACTIONS(1503), 2, + anon_sym_else, + anon_sym_while, + [91026] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3606), 1, + sym_identifier, + ACTIONS(3608), 1, + anon_sym_STAR, + STATE(1992), 1, sym_comment, - ACTIONS(3487), 1, + STATE(2200), 1, + sym_formal_parameters, + [91048] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1913), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3695), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [82236] = 4, - ACTIONS(1203), 1, + STATE(1993), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1969), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3697), 2, + ACTIONS(3610), 2, sym__automatic_semicolon, anon_sym_SEMI, - [82250] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3487), 1, + [91068] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3415), 1, anon_sym_COMMA, - STATE(1911), 1, + STATE(1913), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(3699), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [82264] = 4, - ACTIONS(1203), 1, + STATE(1994), 1, sym_comment, - ACTIONS(3487), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(3701), 2, + ACTIONS(3612), 2, sym__automatic_semicolon, anon_sym_SEMI, - [82278] = 5, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3565), 1, - anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_COMMA, - ACTIONS(3703), 1, - anon_sym_RBRACK, - STATE(1981), 1, - aux_sym_array_pattern_repeat1, - [82294] = 2, - ACTIONS(1203), 1, + [91088] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(1995), 1, sym_comment, - ACTIONS(2114), 4, + ACTIONS(2461), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [82304] = 5, + [91104] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3705), 1, + ACTIONS(3614), 1, sym_identifier, - ACTIONS(3707), 1, + ACTIONS(3616), 1, anon_sym_STAR, - STATE(2390), 1, + STATE(1996), 1, + sym_comment, + STATE(2294), 1, sym_formal_parameters, - [82320] = 5, - ACTIONS(1203), 1, + [91126] = 7, + 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, - ACTIONS(3463), 1, - anon_sym_extends, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1325), 1, - sym_class_body, - STATE(2212), 1, - sym_class_heritage, - [82336] = 4, - ACTIONS(1203), 1, + 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, sym_comment, - ACTIONS(3709), 1, + STATE(2200), 1, + sym_formal_parameters, + [91170] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3624), 1, + sym_identifier, + ACTIONS(3626), 1, anon_sym_STAR, - ACTIONS(3711), 1, - anon_sym_LBRACE, - STATE(2709), 2, - sym_namespace_import, - sym_named_imports, - [82350] = 5, - ACTIONS(1203), 1, + STATE(1999), 1, sym_comment, - ACTIONS(3463), 1, + STATE(2294), 1, + sym_formal_parameters, + [91192] = 7, + 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, + sym_comment, + STATE(2051), 1, + sym_decorator, + [91214] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3411), 1, anon_sym_extends, - ACTIONS(3567), 1, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(619), 1, + STATE(1337), 1, sym_class_body, - STATE(2250), 1, + STATE(2001), 1, + sym_comment, + STATE(2662), 1, sym_class_heritage, - [82366] = 5, - ACTIONS(1203), 1, + [91236] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3630), 1, + sym_identifier, + ACTIONS(3632), 1, + anon_sym_STAR, + STATE(2002), 1, sym_comment, - ACTIONS(1205), 1, + STATE(2200), 1, + sym_formal_parameters, + [91258] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + 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, + sym_comment, + STATE(2294), 1, + sym_formal_parameters, + [91280] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1241), 1, anon_sym_AT, - ACTIONS(3713), 1, + ACTIONS(3638), 1, anon_sym_class, - STATE(1780), 1, + STATE(1865), 1, aux_sym_export_statement_repeat1, - STATE(2031), 1, + STATE(2004), 1, + sym_comment, + STATE(2051), 1, sym_decorator, - [82382] = 4, - ACTIONS(1203), 1, + [91302] = 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(1884), 1, + aux_sym_array_repeat1, + STATE(2005), 1, + sym_comment, + [91321] = 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, + sym_comment, + [91340] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3644), 1, + sym_identifier, + STATE(2007), 1, + sym_comment, + STATE(2326), 1, + sym_formal_parameters, + [91359] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3646), 1, + sym_identifier, + STATE(2008), 1, sym_comment, - ACTIONS(3426), 1, + STATE(2203), 1, + sym_formal_parameters, + [91378] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2388), 1, + sym__automatic_semicolon, + STATE(2009), 1, + sym_comment, + ACTIONS(1035), 2, + anon_sym_else, + anon_sym_while, + [91395] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, anon_sym_COMMA, - ACTIONS(3715), 1, + ACTIONS(3650), 1, anon_sym_RBRACE, - STATE(2058), 1, - aux_sym_object_pattern_repeat1, - [82395] = 4, - ACTIONS(1203), 1, + STATE(2010), 1, sym_comment, - ACTIONS(3426), 1, + STATE(2129), 1, + aux_sym_object_repeat1, + [91414] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, anon_sym_COMMA, - ACTIONS(3717), 1, + ACTIONS(3652), 1, anon_sym_RBRACE, - STATE(2117), 1, + STATE(2011), 1, + sym_comment, + STATE(2130), 1, aux_sym_object_pattern_repeat1, - [82408] = 4, - ACTIONS(1203), 1, + [91433] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, + anon_sym_COMMA, + ACTIONS(3654), 1, + anon_sym_RBRACE, + STATE(2012), 1, sym_comment, - ACTIONS(3719), 1, + STATE(2130), 1, + aux_sym_object_pattern_repeat1, + [91452] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, anon_sym_COMMA, - ACTIONS(3721), 1, + ACTIONS(3656), 1, anon_sym_RBRACE, - STATE(2120), 1, + STATE(2013), 1, + sym_comment, + STATE(2129), 1, aux_sym_object_repeat1, - [82421] = 4, - ACTIONS(1203), 1, + [91471] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2382), 1, + sym__automatic_semicolon, + STATE(2014), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(3723), 1, - anon_sym_RPAREN, - STATE(1962), 1, - aux_sym_array_repeat1, - [82434] = 4, - ACTIONS(1203), 1, + ACTIONS(1031), 2, + anon_sym_else, + anon_sym_while, + [91488] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2362), 1, + sym__automatic_semicolon, + STATE(2015), 1, sym_comment, - ACTIONS(3622), 1, + ACTIONS(1021), 2, + anon_sym_else, + anon_sym_while, + [91505] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, anon_sym_COMMA, - ACTIONS(3725), 1, - anon_sym_RBRACK, - STATE(1997), 1, - aux_sym_array_pattern_repeat1, - [82447] = 4, - ACTIONS(1203), 1, + ACTIONS(3658), 1, + anon_sym_RBRACE, + STATE(2016), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - ACTIONS(3727), 1, - anon_sym_as, - STATE(2422), 1, - sym__from_clause, - [82460] = 4, - ACTIONS(1203), 1, + STATE(2130), 1, + aux_sym_object_pattern_repeat1, + [91524] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2378), 1, + sym__automatic_semicolon, + STATE(2017), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(999), 2, + anon_sym_else, + anon_sym_while, + [91541] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - ACTIONS(3731), 1, + ACTIONS(3662), 1, anon_sym_LPAREN, - STATE(2043), 1, + STATE(2018), 1, + sym_comment, + STATE(2031), 1, sym_statement_block, - [82473] = 4, - ACTIONS(1203), 1, + [91560] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3664), 1, + sym_identifier, + STATE(2019), 1, sym_comment, - ACTIONS(2228), 1, + STATE(2326), 1, + sym_formal_parameters, + [91579] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(3733), 1, + ACTIONS(3666), 1, anon_sym_RBRACK, - STATE(1962), 1, + STATE(1884), 1, aux_sym_array_repeat1, - [82486] = 4, - ACTIONS(1203), 1, + STATE(2020), 1, sym_comment, - ACTIONS(3622), 1, + [91598] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3520), 1, anon_sym_COMMA, - ACTIONS(3735), 1, + ACTIONS(3668), 1, anon_sym_RBRACK, - STATE(1997), 1, - aux_sym_array_pattern_repeat1, - [82499] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3719), 1, - anon_sym_COMMA, - ACTIONS(3737), 1, - anon_sym_RBRACE, - STATE(2120), 1, - aux_sym_object_repeat1, - [82512] = 4, - ACTIONS(1203), 1, + STATE(2021), 1, sym_comment, - ACTIONS(3739), 1, - anon_sym_COLON, - ACTIONS(3741), 1, - anon_sym_GT, - ACTIONS(3743), 1, - anon_sym_DOT, - [82525] = 4, - ACTIONS(1203), 1, + 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, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2279), 1, - anon_sym_RPAREN, - STATE(1962), 1, - aux_sym_array_repeat1, - [82538] = 4, - ACTIONS(1203), 1, + STATE(2203), 1, + sym_formal_parameters, + [91636] = 6, + 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, sym_comment, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2279), 1, - anon_sym_RPAREN, - STATE(1980), 1, - aux_sym_array_repeat1, - [82551] = 4, - ACTIONS(1203), 1, + [91655] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2386), 1, + sym__automatic_semicolon, + STATE(2024), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_RBRACE, - STATE(2117), 1, - aux_sym_object_pattern_repeat1, - [82564] = 4, - ACTIONS(1203), 1, + ACTIONS(1011), 2, + anon_sym_else, + anon_sym_while, + [91672] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3676), 1, + sym_identifier, + STATE(2025), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2232), 1, - anon_sym_RBRACK, - STATE(1962), 1, - aux_sym_array_repeat1, - [82577] = 4, - ACTIONS(1203), 1, + STATE(2326), 1, + sym_formal_parameters, + [91691] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3678), 1, + sym_identifier, + STATE(2026), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_COMMA, - ACTIONS(3747), 1, - anon_sym_RBRACE, - STATE(2117), 1, - aux_sym_object_pattern_repeat1, - [82590] = 4, - ACTIONS(1203), 1, + STATE(2203), 1, + sym_formal_parameters, + [91710] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2027), 1, sym_comment, - ACTIONS(3719), 1, - anon_sym_COMMA, - ACTIONS(3749), 1, - anon_sym_RBRACE, - STATE(2120), 1, - aux_sym_object_repeat1, - [82603] = 4, - ACTIONS(1203), 1, + ACTIONS(1567), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [91725] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2380), 1, + sym__automatic_semicolon, + STATE(2028), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(1053), 2, + anon_sym_else, + anon_sym_while, + [91742] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2230), 1, + ACTIONS(2390), 1, anon_sym_RPAREN, - STATE(2021), 1, - aux_sym_array_repeat1, - [82616] = 4, - ACTIONS(1203), 1, + STATE(2029), 1, sym_comment, - ACTIONS(2228), 1, + STATE(2049), 1, + aux_sym_array_repeat1, + [91761] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2230), 1, + ACTIONS(2390), 1, anon_sym_RPAREN, - STATE(1962), 1, + STATE(1884), 1, aux_sym_array_repeat1, - [82629] = 4, - ACTIONS(1203), 1, + STATE(2030), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_LPAREN, - ACTIONS(3753), 1, - anon_sym_await, - STATE(107), 1, - sym__for_header, - [82642] = 4, - ACTIONS(1203), 1, + [91780] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2031), 1, sym_comment, - ACTIONS(3755), 1, - anon_sym_COMMA, - ACTIONS(3758), 1, - anon_sym_RBRACK, - STATE(1997), 1, - aux_sym_array_pattern_repeat1, - [82655] = 4, + ACTIONS(1533), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [91795] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3680), 1, sym_identifier, - ACTIONS(3398), 1, - anon_sym_LBRACK, - ACTIONS(3400), 1, - sym_private_property_identifier, - [82668] = 4, - ACTIONS(3), 1, + STATE(2032), 1, sym_comment, - ACTIONS(3760), 1, + STATE(2326), 1, + sym_formal_parameters, + [91814] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3682), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3684), 1, anon_sym_SEMI, - ACTIONS(3764), 1, + ACTIONS(3686), 1, sym__automatic_semicolon, - [82681] = 4, + STATE(2033), 1, + sym_comment, + [91833] = 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, + sym_comment, + [91852] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3694), 1, + sym_identifier, + STATE(2035), 1, sym_comment, - ACTIONS(3766), 1, + STATE(2203), 1, + sym_formal_parameters, + [91871] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3696), 1, sym_identifier, - ACTIONS(3768), 1, + ACTIONS(3698), 1, anon_sym_SEMI, - ACTIONS(3770), 1, + ACTIONS(3700), 1, sym__automatic_semicolon, - [82694] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3739), 1, - anon_sym_COLON, - ACTIONS(3743), 1, - anon_sym_DOT, - ACTIONS(3772), 1, - anon_sym_GT, - [82707] = 3, - ACTIONS(1203), 1, + STATE(2036), 1, sym_comment, - ACTIONS(3774), 1, + [91890] = 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, - ACTIONS(3776), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [82718] = 4, - ACTIONS(1203), 1, + STATE(2037), 1, sym_comment, - ACTIONS(3778), 1, - anon_sym_LBRACE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - STATE(553), 1, - sym_statement_block, - [82731] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3782), 1, - anon_sym_COMMA, - ACTIONS(3784), 1, - anon_sym_RBRACE, - STATE(2040), 1, - aux_sym_export_clause_repeat1, - [82744] = 2, - ACTIONS(1203), 1, + STATE(2456), 1, + sym__from_clause, + [91909] = 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, sym_comment, - ACTIONS(3786), 3, + STATE(2352), 1, + sym__from_clause, + [91928] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2349), 1, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [82753] = 4, - ACTIONS(1203), 1, + STATE(2039), 1, sym_comment, - ACTIONS(3622), 1, - anon_sym_COMMA, - ACTIONS(3624), 1, - anon_sym_RBRACK, - STATE(1997), 1, - aux_sym_array_pattern_repeat1, - [82766] = 2, - ACTIONS(1203), 1, + ACTIONS(1025), 2, + anon_sym_else, + anon_sym_while, + [91945] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2374), 1, + sym__automatic_semicolon, + STATE(2040), 1, sym_comment, - ACTIONS(1651), 3, - anon_sym_LBRACE, + ACTIONS(1041), 2, anon_sym_else, anon_sym_while, - [82775] = 3, - ACTIONS(1203), 1, + [91962] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2041), 1, sym_comment, - ACTIONS(2291), 1, - sym__automatic_semicolon, - ACTIONS(1017), 2, + ACTIONS(1751), 3, + anon_sym_LBRACE, anon_sym_else, anon_sym_while, - [82786] = 4, - ACTIONS(1203), 1, + [91977] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3704), 1, + sym_identifier, + STATE(1774), 1, + sym_decorator_member_expression, + STATE(2042), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(2301), 1, - anon_sym_RPAREN, - STATE(2075), 1, - aux_sym_array_repeat1, - [82799] = 4, - ACTIONS(1203), 1, + STATE(2118), 1, + sym_decorator_call_expression, + [91996] = 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(2043), 1, sym_comment, - ACTIONS(2228), 1, + STATE(2234), 1, + sym__from_clause, + [92015] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2044), 1, + sym_comment, + ACTIONS(2133), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [92030] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2232), 1, + ACTIONS(2331), 1, anon_sym_RBRACK, - STATE(1984), 1, + STATE(1884), 1, aux_sym_array_repeat1, - [82812] = 4, - ACTIONS(1203), 1, + STATE(2045), 1, sym_comment, - ACTIONS(3622), 1, + [92049] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3706), 1, + sym_identifier, + STATE(2046), 1, + sym_comment, + STATE(2326), 1, + sym_formal_parameters, + [92068] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, anon_sym_COMMA, - ACTIONS(3624), 1, - anon_sym_RBRACK, - STATE(1985), 1, - aux_sym_array_pattern_repeat1, - [82825] = 4, - ACTIONS(1203), 1, + ACTIONS(3708), 1, + anon_sym_RBRACE, + STATE(2047), 1, sym_comment, - ACTIONS(3788), 1, - anon_sym_DQUOTE, - ACTIONS(3790), 1, - anon_sym_SQUOTE, - STATE(2332), 1, - sym_string, - [82838] = 4, + STATE(2129), 1, + aux_sym_object_repeat1, + [92087] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, + anon_sym_LPAREN, + ACTIONS(3710), 1, + sym_identifier, + STATE(2048), 1, + sym_comment, + STATE(2203), 1, + sym_formal_parameters, + [92106] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(3712), 1, + anon_sym_RPAREN, + STATE(1884), 1, + aux_sym_array_repeat1, + STATE(2049), 1, sym_comment, - ACTIONS(3792), 1, + [92125] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3302), 1, sym_identifier, - STATE(1753), 1, - sym_decorator_member_expression, - STATE(2086), 1, - sym_decorator_call_expression, - [82851] = 3, - ACTIONS(1203), 1, + ACTIONS(3306), 1, + anon_sym_LBRACK, + ACTIONS(3308), 1, + sym_private_property_identifier, + STATE(2050), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_EQ, - ACTIONS(3758), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [82862] = 4, - ACTIONS(1203), 1, + [92144] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2051), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(3714), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [92159] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - ACTIONS(3727), 1, + ACTIONS(3702), 1, anon_sym_as, - STATE(2320), 1, + STATE(2052), 1, + sym_comment, + STATE(2684), 1, sym__from_clause, - [82875] = 4, - ACTIONS(1203), 1, + [92178] = 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(2053), 1, + sym_comment, + STATE(2163), 1, + sym__from_clause, + [92197] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3296), 1, + anon_sym_EQ, + STATE(2054), 1, + sym_comment, + ACTIONS(1830), 2, + anon_sym_in, + anon_sym_of, + [92214] = 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, + sym_comment, + STATE(2529), 1, + sym_else_clause, + [92233] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2056), 1, + sym_comment, + ACTIONS(2103), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [92248] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2226), 1, + anon_sym_in, + STATE(2057), 1, sym_comment, - ACTIONS(3426), 1, + ACTIONS(2468), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [92265] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, anon_sym_COMMA, - ACTIONS(3794), 1, + ACTIONS(3718), 1, anon_sym_RBRACE, - STATE(2117), 1, + STATE(2016), 1, aux_sym_object_pattern_repeat1, - [82888] = 4, - ACTIONS(1203), 1, + STATE(2058), 1, sym_comment, - ACTIONS(3719), 1, + [92284] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, anon_sym_COMMA, - ACTIONS(3796), 1, + ACTIONS(3720), 1, anon_sym_RBRACE, - STATE(2120), 1, + STATE(2047), 1, aux_sym_object_repeat1, - [82901] = 4, - ACTIONS(1203), 1, + STATE(2059), 1, sym_comment, - ACTIONS(3719), 1, + [92303] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + ACTIONS(3722), 1, + anon_sym_COLON, + STATE(2060), 1, + sym_comment, + STATE(2178), 1, + sym_formal_parameters, + [92322] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, anon_sym_COMMA, - ACTIONS(3796), 1, + ACTIONS(3720), 1, anon_sym_RBRACE, - STATE(1979), 1, + STATE(2061), 1, + sym_comment, + STATE(2129), 1, aux_sym_object_repeat1, - [82914] = 4, - ACTIONS(1203), 1, + [92341] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2062), 1, + sym_comment, + ACTIONS(2123), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [92356] = 6, + 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, sym_comment, - ACTIONS(3426), 1, + STATE(2146), 1, + aux_sym_formal_parameters_repeat1, + [92375] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, anon_sym_COMMA, - ACTIONS(3794), 1, + ACTIONS(3718), 1, anon_sym_RBRACE, - STATE(1978), 1, + STATE(2064), 1, + sym_comment, + STATE(2130), 1, aux_sym_object_pattern_repeat1, - [82927] = 4, - ACTIONS(1203), 1, + [92394] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(3724), 1, + anon_sym_RPAREN, + STATE(1884), 1, + aux_sym_array_repeat1, + STATE(2065), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - ACTIONS(3727), 1, - anon_sym_as, - STATE(2204), 1, - sym__from_clause, - [82940] = 4, - ACTIONS(1203), 1, + [92413] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(2329), 1, + anon_sym_RPAREN, + STATE(1884), 1, + aux_sym_array_repeat1, + STATE(2066), 1, sym_comment, - ACTIONS(2228), 1, + [92432] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(3798), 1, + ACTIONS(2329), 1, anon_sym_RPAREN, - STATE(1962), 1, + STATE(2065), 1, aux_sym_array_repeat1, - [82953] = 3, - ACTIONS(1203), 1, + STATE(2067), 1, sym_comment, - ACTIONS(3368), 1, - anon_sym_EQ, - ACTIONS(1763), 2, - anon_sym_in, - anon_sym_of, - [82964] = 4, - ACTIONS(3), 1, + [92451] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3726), 1, + anon_sym_LBRACE, + ACTIONS(3728), 1, + anon_sym_LPAREN, + STATE(515), 1, + sym_statement_block, + STATE(2068), 1, sym_comment, - ACTIONS(3800), 1, - sym_identifier, - STATE(1523), 1, - sym_decorator_member_expression, - STATE(1586), 1, - sym_decorator_call_expression, - [82977] = 4, - ACTIONS(1203), 1, + [92470] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2069), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(3730), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [92485] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3520), 1, anon_sym_COMMA, - ACTIONS(3802), 1, + ACTIONS(3524), 1, anon_sym_RBRACK, - STATE(1962), 1, - aux_sym_array_repeat1, - [82990] = 4, - ACTIONS(3), 1, + STATE(2070), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - sym_identifier, - STATE(2387), 1, - sym_formal_parameters, - [83003] = 4, + STATE(2133), 1, + aux_sym_array_pattern_repeat1, + [92504] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3806), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3734), 1, anon_sym_SEMI, - ACTIONS(3810), 1, + ACTIONS(3736), 1, sym__automatic_semicolon, - [83016] = 4, - ACTIONS(3), 1, + STATE(2071), 1, sym_comment, - ACTIONS(3812), 1, + [92523] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3738), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3740), 1, anon_sym_SEMI, - ACTIONS(3816), 1, + ACTIONS(3742), 1, sym__automatic_semicolon, - [83029] = 4, - ACTIONS(1203), 1, + STATE(2072), 1, sym_comment, - ACTIONS(3818), 1, + [92542] = 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, + sym_comment, + STATE(2134), 1, + aux_sym_array_repeat1, + [92561] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3744), 1, anon_sym_LPAREN, - ACTIONS(3820), 1, + ACTIONS(3746), 1, anon_sym_await, - STATE(95), 1, + STATE(87), 1, sym__for_header, - [83042] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, - sym_identifier, - STATE(2316), 1, - sym_formal_parameters, - [83055] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_while, - ACTIONS(3824), 1, - anon_sym_else, - STATE(2329), 1, - sym_else_clause, - [83068] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3826), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [83077] = 2, - ACTIONS(1203), 1, + STATE(2074), 1, sym_comment, - ACTIONS(3828), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [83086] = 4, - ACTIONS(1203), 1, + [92580] = 6, + 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(2075), 1, sym_comment, - ACTIONS(2228), 1, + STATE(2132), 1, + aux_sym_array_pattern_repeat1, + [92599] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3748), 1, anon_sym_COMMA, - ACTIONS(2271), 1, - anon_sym_RPAREN, - STATE(2101), 1, - aux_sym_array_repeat1, - [83099] = 4, - ACTIONS(1203), 1, + ACTIONS(3751), 1, + anon_sym_RBRACE, + STATE(2076), 2, sym_comment, - ACTIONS(2228), 1, + aux_sym_named_imports_repeat1, + [92616] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2271), 1, + ACTIONS(3753), 1, anon_sym_RPAREN, - STATE(1962), 1, + STATE(1884), 1, aux_sym_array_repeat1, - [83112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3830), 1, - sym__glimmer_template_content, - ACTIONS(3833), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2035), 1, - aux_sym_glimmer_template_repeat1, - [83125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3835), 1, - sym_identifier, - STATE(2387), 1, - sym_formal_parameters, - [83138] = 4, - ACTIONS(1203), 1, + STATE(2077), 1, sym_comment, - ACTIONS(3739), 1, + [92635] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3688), 1, anon_sym_COLON, - ACTIONS(3743), 1, + ACTIONS(3692), 1, anon_sym_DOT, - ACTIONS(3837), 1, + ACTIONS(3755), 1, anon_sym_GT, - [83151] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 1, - sym_identifier, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3843), 1, - sym__automatic_semicolon, - [83164] = 2, - ACTIONS(1203), 1, + STATE(2078), 1, sym_comment, - ACTIONS(3845), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [83173] = 4, - ACTIONS(1203), 1, + [92654] = 6, + 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, sym_comment, - ACTIONS(3847), 1, + [92673] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(3849), 1, - anon_sym_RBRACE, - STATE(2106), 1, - aux_sym_export_clause_repeat1, - [83186] = 4, - ACTIONS(1203), 1, + ACTIONS(2370), 1, + anon_sym_RPAREN, + STATE(2077), 1, + aux_sym_array_repeat1, + STATE(2080), 1, sym_comment, - ACTIONS(3851), 1, + [92692] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3757), 1, anon_sym_LBRACE, - ACTIONS(3853), 1, + ACTIONS(3759), 1, anon_sym_LPAREN, - STATE(516), 1, + STATE(632), 1, sym_statement_block, - [83199] = 2, - ACTIONS(1203), 1, + STATE(2081), 1, sym_comment, - ACTIONS(848), 3, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - [83208] = 2, - ACTIONS(1203), 1, + [92711] = 5, + 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, sym_comment, - ACTIONS(1505), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [83217] = 2, - ACTIONS(1203), 1, + aux_sym_export_clause_repeat1, + [92728] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2083), 1, sym_comment, - ACTIONS(882), 3, + ACTIONS(3766), 3, sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - [83226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - sym_identifier, - ACTIONS(3857), 1, + anon_sym_from, anon_sym_SEMI, - ACTIONS(3859), 1, - sym__automatic_semicolon, - [83239] = 4, - ACTIONS(1203), 1, + [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, - ACTIONS(3515), 1, - anon_sym_from, - ACTIONS(3727), 1, - anon_sym_as, - STATE(2278), 1, - sym__from_clause, - [83252] = 3, - ACTIONS(1203), 1, + [92762] = 5, + 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, sym_comment, - ACTIONS(3861), 1, - sym__automatic_semicolon, - ACTIONS(840), 2, - anon_sym_else, - anon_sym_while, - [83263] = 4, - ACTIONS(3), 1, + aux_sym_formal_parameters_repeat1, + [92779] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3522), 1, + anon_sym_EQ, + STATE(2086), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3863), 1, - sym_identifier, - STATE(2387), 1, - sym_formal_parameters, - [83276] = 4, + ACTIONS(3773), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [92796] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3865), 1, + ACTIONS(3775), 1, sym_identifier, - STATE(2316), 1, + STATE(2087), 1, + sym_comment, + STATE(2648), 1, sym_formal_parameters, - [83289] = 4, + [92815] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3867), 1, + ACTIONS(3777), 1, sym_identifier, - STATE(2316), 1, + STATE(2088), 1, + sym_comment, + STATE(2203), 1, sym_formal_parameters, - [83302] = 4, + [92834] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3779), 1, sym_identifier, - STATE(1539), 1, - sym_decorator_member_expression, - STATE(1627), 1, - sym_decorator_call_expression, - [83315] = 4, - ACTIONS(3), 1, + ACTIONS(3781), 1, + anon_sym_SEMI, + ACTIONS(3783), 1, + sym__automatic_semicolon, + STATE(2089), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3871), 1, + [92853] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3785), 1, sym_identifier, - STATE(2387), 1, - sym_formal_parameters, - [83328] = 4, - ACTIONS(1203), 1, + ACTIONS(3787), 1, + anon_sym_SEMI, + ACTIONS(3789), 1, + sym__automatic_semicolon, + STATE(2090), 1, sym_comment, - ACTIONS(3191), 1, + [92872] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3791), 1, anon_sym_LPAREN, - ACTIONS(3873), 1, - anon_sym_COLON, - STATE(2135), 1, - sym_formal_parameters, - [83341] = 3, - ACTIONS(1203), 1, + ACTIONS(3793), 1, + anon_sym_await, + STATE(88), 1, + sym__for_header, + STATE(2091), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_EQ, - ACTIONS(3875), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [83352] = 4, - ACTIONS(1203), 1, + [92891] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2092), 1, sym_comment, - ACTIONS(3622), 1, + ACTIONS(3488), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3703), 1, - anon_sym_RBRACK, - STATE(1981), 1, - aux_sym_array_pattern_repeat1, - [83365] = 4, - ACTIONS(1203), 1, + anon_sym_SEMI, + [92906] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3795), 1, + anon_sym_COMMA, + ACTIONS(3797), 1, + anon_sym_RBRACE, + STATE(2076), 1, + aux_sym_named_imports_repeat1, + STATE(2093), 1, sym_comment, - ACTIONS(2228), 1, + [92925] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2301), 1, + ACTIONS(3799), 1, anon_sym_RPAREN, - STATE(1962), 1, + STATE(1884), 1, aux_sym_array_repeat1, - [83378] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - ACTIONS(3727), 1, - anon_sym_as, - STATE(2262), 1, - sym__from_clause, - [83391] = 4, - ACTIONS(1203), 1, + STATE(2094), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - STATE(2117), 1, - aux_sym_object_pattern_repeat1, - [83404] = 4, - ACTIONS(1203), 1, + [92944] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3801), 1, + anon_sym_DQUOTE, + STATE(2095), 1, sym_comment, - ACTIONS(3739), 1, + ACTIONS(3803), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [92961] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3688), 1, anon_sym_COLON, - ACTIONS(3743), 1, + ACTIONS(3692), 1, anon_sym_DOT, - ACTIONS(3879), 1, + ACTIONS(3805), 1, anon_sym_GT, - [83417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(3883), 1, - anon_sym_SEMI, - ACTIONS(3885), 1, - sym__automatic_semicolon, - [83430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3887), 1, - sym_identifier, - ACTIONS(3889), 1, - anon_sym_SEMI, - ACTIONS(3891), 1, - sym__automatic_semicolon, - [83443] = 4, - ACTIONS(1203), 1, + STATE(2096), 1, sym_comment, - ACTIONS(3719), 1, + [92980] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_RBRACE, - STATE(2120), 1, - aux_sym_object_repeat1, - [83456] = 2, - ACTIONS(1203), 1, + ACTIONS(2368), 1, + anon_sym_RPAREN, + STATE(1884), 1, + aux_sym_array_repeat1, + STATE(2097), 1, sym_comment, - ACTIONS(2226), 3, + [92999] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, + ACTIONS(2368), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [83465] = 4, - ACTIONS(1203), 1, + STATE(2094), 1, + aux_sym_array_repeat1, + STATE(2098), 1, sym_comment, - ACTIONS(3895), 1, - anon_sym_LPAREN, - ACTIONS(3897), 1, - anon_sym_await, - STATE(98), 1, - sym__for_header, - [83478] = 3, - ACTIONS(1203), 1, + [93018] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2099), 1, sym_comment, - ACTIONS(2299), 1, - sym__automatic_semicolon, - ACTIONS(952), 2, - anon_sym_else, - anon_sym_while, - [83489] = 3, - ACTIONS(1203), 1, + ACTIONS(3807), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [93033] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3548), 1, + anon_sym_RBRACK, + STATE(2100), 1, sym_comment, - ACTIONS(2297), 1, - sym__automatic_semicolon, - ACTIONS(958), 2, - anon_sym_else, - anon_sym_while, - [83500] = 4, - ACTIONS(1203), 1, + STATE(2132), 1, + aux_sym_array_pattern_repeat1, + [93052] = 5, + 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(3899), 1, + ACTIONS(3809), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [93069] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3811), 1, anon_sym_LBRACE, - ACTIONS(3901), 1, + ACTIONS(3813), 1, anon_sym_LPAREN, - STATE(702), 1, + STATE(549), 1, sym_statement_block, - [83513] = 3, - ACTIONS(1203), 1, + STATE(2102), 1, sym_comment, - ACTIONS(2295), 1, - sym__automatic_semicolon, - ACTIONS(965), 2, - anon_sym_else, - anon_sym_while, - [83524] = 3, - ACTIONS(1203), 1, + [93088] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(2331), 1, + anon_sym_RBRACK, + STATE(2020), 1, + aux_sym_array_repeat1, + STATE(2103), 1, sym_comment, - ACTIONS(2159), 1, - anon_sym_in, - ACTIONS(2369), 2, + [93107] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, + ACTIONS(3815), 1, anon_sym_COLON, - [83535] = 4, - ACTIONS(1203), 1, + STATE(2104), 1, sym_comment, - ACTIONS(3903), 1, + STATE(2178), 1, + sym_formal_parameters, + [93126] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3817), 1, anon_sym_COMMA, - ACTIONS(3905), 1, - anon_sym_RPAREN, - STATE(2099), 1, - aux_sym_formal_parameters_repeat1, - [83548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 1, - sym_identifier, - ACTIONS(3325), 1, - anon_sym_LBRACK, - ACTIONS(3327), 1, - sym_private_property_identifier, - [83561] = 4, - ACTIONS(1203), 1, + ACTIONS(3819), 1, + anon_sym_RBRACE, + STATE(2082), 1, + aux_sym_export_clause_repeat1, + STATE(2105), 1, sym_comment, - ACTIONS(3561), 1, - anon_sym_COMMA, - ACTIONS(3563), 1, - anon_sym_RPAREN, - STATE(2070), 1, - aux_sym_formal_parameters_repeat1, - [83574] = 4, - ACTIONS(1203), 1, + [93145] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3821), 1, + anon_sym_SQUOTE, + STATE(2106), 1, sym_comment, - ACTIONS(3719), 1, + ACTIONS(3823), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [93162] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3520), 1, anon_sym_COMMA, - ACTIONS(3907), 1, - anon_sym_RBRACE, - STATE(2062), 1, - aux_sym_object_repeat1, - [83587] = 4, - ACTIONS(3), 1, + ACTIONS(3548), 1, + anon_sym_RBRACK, + STATE(2021), 1, + aux_sym_array_pattern_repeat1, + STATE(2107), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3909), 1, - sym_identifier, - STATE(2230), 1, - sym_formal_parameters, - [83600] = 4, - ACTIONS(1203), 1, + [93181] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2108), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(3825), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [93196] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(3911), 1, + ACTIONS(2372), 1, anon_sym_RPAREN, - STATE(1962), 1, + STATE(2084), 1, aux_sym_array_repeat1, - [83613] = 2, - ACTIONS(1203), 1, + STATE(2109), 1, sym_comment, - ACTIONS(878), 3, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - [83622] = 2, - ACTIONS(1203), 1, + [93215] = 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, sym_comment, - ACTIONS(2106), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [83631] = 4, + [93234] = 5, 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, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3913), 1, - sym_identifier, - STATE(2316), 1, - sym_formal_parameters, - [83644] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3915), 1, - anon_sym_LPAREN, - ACTIONS(3917), 1, - anon_sym_await, - STATE(109), 1, - sym__for_header, - [83657] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3919), 1, + aux_sym_glimmer_template_repeat1, + [93251] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(3921), 1, - anon_sym_RBRACE, + ACTIONS(2372), 1, + anon_sym_RPAREN, + STATE(1884), 1, + aux_sym_array_repeat1, STATE(2112), 1, - aux_sym_named_imports_repeat1, - [83670] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3923), 1, - anon_sym_EQ, - ACTIONS(1763), 2, - anon_sym_in, - anon_sym_of, - [83681] = 4, - ACTIONS(1203), 1, sym_comment, - ACTIONS(3719), 1, + [93270] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, anon_sym_COMMA, - ACTIONS(3907), 1, + ACTIONS(3834), 1, anon_sym_RBRACE, - STATE(2120), 1, - aux_sym_object_repeat1, - [83694] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(886), 3, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - [83703] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3602), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [83712] = 4, - ACTIONS(1203), 1, + STATE(2113), 1, sym_comment, - ACTIONS(3426), 1, - anon_sym_COMMA, - ACTIONS(3715), 1, - anon_sym_RBRACE, - STATE(2117), 1, + STATE(2130), 1, aux_sym_object_pattern_repeat1, - [83725] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3239), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [83734] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - ACTIONS(3925), 1, - anon_sym_COLON, - STATE(2135), 1, - sym_formal_parameters, - [83747] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3414), 3, - sym__automatic_semicolon, + [93289] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, anon_sym_COMMA, - anon_sym_SEMI, - [83756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3927), 1, - sym_identifier, - STATE(2387), 1, - sym_formal_parameters, - [83769] = 4, - ACTIONS(1203), 1, + ACTIONS(3836), 1, + anon_sym_RBRACE, + STATE(2114), 1, sym_comment, - ACTIONS(3929), 1, - anon_sym_LPAREN, - ACTIONS(3931), 1, - anon_sym_await, - STATE(72), 1, - sym__for_header, - [83782] = 3, - ACTIONS(1203), 1, + STATE(2129), 1, + aux_sym_object_repeat1, + [93308] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2115), 1, sym_comment, - ACTIONS(3933), 1, - sym__automatic_semicolon, - ACTIONS(882), 2, - anon_sym_else, - anon_sym_while, - [83793] = 3, - ACTIONS(1203), 1, + ACTIONS(3838), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [93323] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2116), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(930), 3, sym__automatic_semicolon, - ACTIONS(973), 2, anon_sym_else, anon_sym_while, - [83804] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3935), 1, - sym_identifier, - STATE(2210), 1, - sym_formal_parameters, - [83817] = 3, - ACTIONS(1203), 1, + [93338] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2117), 1, sym_comment, - ACTIONS(2287), 1, + ACTIONS(989), 3, sym__automatic_semicolon, - ACTIONS(977), 2, anon_sym_else, anon_sym_while, - [83828] = 4, - ACTIONS(3), 1, + [93353] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2118), 1, sym_comment, - ACTIONS(3937), 1, - sym_identifier, - ACTIONS(3939), 1, - anon_sym_SEMI, - ACTIONS(3941), 1, + ACTIONS(3194), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [93368] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3840), 1, sym__automatic_semicolon, - [83841] = 3, - ACTIONS(1203), 1, + STATE(2119), 1, sym_comment, - ACTIONS(2283), 1, - sym__automatic_semicolon, - ACTIONS(983), 2, + ACTIONS(876), 2, anon_sym_else, anon_sym_while, - [83852] = 4, + [93385] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3943), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3945), 1, - anon_sym_SEMI, - ACTIONS(3947), 1, - sym__automatic_semicolon, - [83865] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2038), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [83874] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3949), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, - anon_sym_RPAREN, - STATE(2099), 1, - aux_sym_formal_parameters_repeat1, - [83887] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3565), 1, - anon_sym_EQ, - ACTIONS(3952), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [83898] = 4, - ACTIONS(1203), 1, + ACTIONS(3346), 1, + anon_sym_LBRACK, + ACTIONS(3348), 1, + sym_private_property_identifier, + STATE(2120), 1, sym_comment, - ACTIONS(2228), 1, - anon_sym_COMMA, - ACTIONS(3954), 1, - anon_sym_RPAREN, - STATE(1962), 1, - aux_sym_array_repeat1, - [83911] = 4, + [93404] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - ACTIONS(3956), 1, + ACTIONS(3842), 1, sym_identifier, - STATE(2316), 1, - sym_formal_parameters, - [83924] = 3, - ACTIONS(1203), 1, + STATE(2121), 1, sym_comment, - ACTIONS(2269), 1, + STATE(2326), 1, + sym_formal_parameters, + [93423] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3844), 1, sym__automatic_semicolon, - ACTIONS(989), 2, + STATE(2122), 1, + sym_comment, + ACTIONS(932), 2, anon_sym_else, anon_sym_while, - [83935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3958), 1, - sym_identifier, - STATE(2316), 1, - sym_formal_parameters, - [83948] = 2, - ACTIONS(1203), 1, + [93440] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2123), 1, sym_comment, - ACTIONS(3960), 3, + ACTIONS(876), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [83957] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3962), 1, + anon_sym_else, + anon_sym_while, + [93455] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, anon_sym_COMMA, - ACTIONS(3965), 1, + ACTIONS(3846), 1, anon_sym_RBRACE, - STATE(2106), 1, - aux_sym_export_clause_repeat1, - [83970] = 4, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3967), 1, - anon_sym_LBRACE, - ACTIONS(3969), 1, - anon_sym_LPAREN, - STATE(471), 1, - sym_statement_block, - [83983] = 4, - ACTIONS(1203), 1, + STATE(2124), 1, sym_comment, - ACTIONS(2228), 1, + STATE(2130), 1, + aux_sym_object_pattern_repeat1, + [93474] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, anon_sym_COMMA, - ACTIONS(2281), 1, - anon_sym_RPAREN, - STATE(2111), 1, - aux_sym_array_repeat1, - [83996] = 4, - ACTIONS(3), 1, + ACTIONS(3848), 1, + anon_sym_RBRACE, + STATE(2125), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - sym_identifier, - STATE(2387), 1, - sym_formal_parameters, - [84009] = 4, - ACTIONS(1203), 1, + STATE(2129), 1, + aux_sym_object_repeat1, + [93493] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3648), 1, + anon_sym_COMMA, + ACTIONS(3848), 1, + anon_sym_RBRACE, + STATE(2013), 1, + aux_sym_object_repeat1, + STATE(2126), 1, sym_comment, - ACTIONS(2228), 1, + [93512] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3235), 1, anon_sym_COMMA, - ACTIONS(2281), 1, - anon_sym_RPAREN, - STATE(1962), 1, - aux_sym_array_repeat1, - [84022] = 4, - ACTIONS(1203), 1, + 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, sym_comment, - ACTIONS(2228), 1, + ACTIONS(941), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [93546] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3850), 1, anon_sym_COMMA, - ACTIONS(3973), 1, - anon_sym_RPAREN, - STATE(1962), 1, - aux_sym_array_repeat1, - [84035] = 4, - ACTIONS(1203), 1, + ACTIONS(3853), 1, + anon_sym_RBRACE, + STATE(2129), 2, sym_comment, - ACTIONS(3975), 1, + aux_sym_object_repeat1, + [93563] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3855), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(3858), 1, anon_sym_RBRACE, - STATE(2112), 1, - aux_sym_named_imports_repeat1, - [84048] = 2, - ACTIONS(1203), 1, + STATE(2130), 2, sym_comment, - ACTIONS(1499), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [84057] = 2, - ACTIONS(1203), 1, + aux_sym_object_pattern_repeat1, + [93580] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3860), 1, + sym_identifier, + STATE(1568), 1, + sym_decorator_member_expression, + STATE(1646), 1, + sym_decorator_call_expression, + STATE(2131), 1, sym_comment, - ACTIONS(3980), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [84066] = 4, - ACTIONS(1203), 1, + [93599] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(3865), 1, + anon_sym_RBRACK, + STATE(2132), 2, sym_comment, - ACTIONS(3622), 1, + 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(3703), 1, + ACTIONS(3867), 1, anon_sym_RBRACK, - STATE(1997), 1, + STATE(2132), 1, aux_sym_array_pattern_repeat1, - [84079] = 4, - ACTIONS(1203), 1, + STATE(2133), 1, sym_comment, - ACTIONS(2228), 1, + [93635] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2311), 1, anon_sym_COMMA, - ACTIONS(2273), 1, + ACTIONS(3869), 1, anon_sym_RBRACK, - STATE(1962), 1, + STATE(1884), 1, aux_sym_array_repeat1, - [84092] = 4, - ACTIONS(1203), 1, + STATE(2134), 1, sym_comment, - ACTIONS(3982), 1, - anon_sym_COMMA, - ACTIONS(3985), 1, - anon_sym_RBRACE, - STATE(2117), 1, - aux_sym_object_pattern_repeat1, - [84105] = 4, - ACTIONS(1203), 1, + [93654] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3522), 1, + anon_sym_EQ, + STATE(2135), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(3865), 2, anon_sym_COMMA, - ACTIONS(2273), 1, anon_sym_RBRACK, - STATE(2024), 1, - aux_sym_array_repeat1, - [84118] = 4, - ACTIONS(1203), 1, + [93671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3427), 1, + anon_sym_as, + STATE(2136), 1, sym_comment, - ACTIONS(3987), 1, + ACTIONS(3871), 2, anon_sym_COMMA, - ACTIONS(3989), 1, anon_sym_RBRACE, - STATE(2080), 1, - aux_sym_named_imports_repeat1, - [84131] = 4, - ACTIONS(1203), 1, + [93688] = 6, + 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, sym_comment, - ACTIONS(3991), 1, + [93707] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2138), 1, + sym_comment, + ACTIONS(2299), 3, anon_sym_COMMA, - ACTIONS(3994), 1, - anon_sym_RBRACE, - STATE(2120), 1, - aux_sym_object_repeat1, - [84144] = 3, - ACTIONS(1203), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [93722] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3875), 1, + sym_identifier, + ACTIONS(3877), 1, + anon_sym_SEMI, + ACTIONS(3879), 1, + sym__automatic_semicolon, + STATE(2139), 1, sym_comment, - ACTIONS(3996), 1, - anon_sym_as, - ACTIONS(3998), 2, + [93741] = 6, + 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, - [84155] = 2, - ACTIONS(1203), 1, + STATE(2093), 1, + aux_sym_named_imports_repeat1, + STATE(2140), 1, sym_comment, - ACTIONS(1982), 3, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - [84164] = 3, - ACTIONS(1203), 1, + [93760] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + 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, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2483), 1, - sym_statement_block, - [84174] = 3, - ACTIONS(1203), 1, + [93779] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3891), 1, + anon_sym_LPAREN, + ACTIONS(3893), 1, + anon_sym_await, + STATE(78), 1, + sym__for_header, + STATE(2142), 1, sym_comment, - ACTIONS(4000), 1, - anon_sym_LBRACE, - STATE(159), 1, - sym_statement_block, - [84184] = 3, - ACTIONS(1203), 1, + [93798] = 6, + 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, sym_comment, - ACTIONS(4002), 1, + [93817] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3901), 1, + sym_identifier, + ACTIONS(3903), 1, anon_sym_SEMI, - ACTIONS(4004), 1, + ACTIONS(3905), 1, sym__automatic_semicolon, - [84194] = 2, - ACTIONS(1203), 1, + STATE(2144), 1, sym_comment, - ACTIONS(1621), 2, - anon_sym_else, - anon_sym_while, - [84202] = 2, - ACTIONS(1203), 1, + [93836] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2145), 1, sym_comment, - ACTIONS(1671), 2, - anon_sym_else, - anon_sym_while, - [84210] = 3, - ACTIONS(3), 1, + ACTIONS(3370), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [93851] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3907), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RPAREN, + STATE(2085), 1, + aux_sym_formal_parameters_repeat1, + STATE(2146), 1, sym_comment, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4008), 1, - anon_sym_STAR, - [84220] = 2, - ACTIONS(1203), 1, + [93870] = 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, sym_comment, - ACTIONS(1667), 2, - anon_sym_else, - anon_sym_while, - [84228] = 3, - ACTIONS(1203), 1, + STATE(2232), 1, + sym_string, + [93889] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3915), 1, + anon_sym_EQ, + STATE(2148), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(1830), 2, + anon_sym_in, + anon_sym_of, + [93906] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3407), 1, anon_sym_LPAREN, - STATE(2357), 1, + ACTIONS(3917), 1, + sym_identifier, + STATE(2149), 1, + sym_comment, + STATE(2224), 1, sym_formal_parameters, - [84238] = 2, - ACTIONS(1203), 1, + [93925] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3919), 1, + anon_sym_as, + STATE(2150), 1, sym_comment, - ACTIONS(3758), 2, + ACTIONS(3921), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [84246] = 3, - ACTIONS(1203), 1, + anon_sym_RBRACE, + [93942] = 6, + 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, + sym_comment, + [93961] = 6, + 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, + sym_comment, + [93980] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2153), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(3931), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [93995] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2381), 1, + STATE(2154), 1, + sym_comment, + STATE(2561), 1, sym_formal_parameters, - [84256] = 2, - ACTIONS(1203), 1, + [94011] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2155), 1, sym_comment, - ACTIONS(4010), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [84264] = 3, - ACTIONS(1203), 1, + 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, + sym_comment, + STATE(2244), 1, + sym_formal_parameters, + [94041] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2157), 1, sym_comment, - ACTIONS(4012), 1, + ACTIONS(1739), 2, + anon_sym_else, + anon_sym_while, + [94055] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(903), 1, + STATE(110), 1, sym_parenthesized_expression, - [84274] = 3, - ACTIONS(1203), 1, + STATE(2158), 1, sym_comment, - ACTIONS(3729), 1, + [94071] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2345), 1, + STATE(1771), 1, sym_statement_block, - [84284] = 3, - ACTIONS(1203), 1, + STATE(2159), 1, sym_comment, - ACTIONS(4014), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_statement_block, - [84294] = 2, - ACTIONS(1203), 1, + [94087] = 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, sym_comment, - ACTIONS(1663), 2, + [94103] = 5, + 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, + sym_comment, + [94119] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3941), 1, + sym_identifier, + ACTIONS(3943), 1, + anon_sym_STAR, + STATE(2162), 1, + sym_comment, + [94135] = 5, + 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, + sym_comment, + [94151] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2164), 1, + sym_comment, + STATE(2311), 1, + sym_formal_parameters, + [94167] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2165), 1, + sym_comment, + ACTIONS(1739), 2, anon_sym_else, anon_sym_while, - [84302] = 3, - ACTIONS(1203), 1, + [94181] = 5, + 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, sym_comment, - ACTIONS(4012), 1, + [94197] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(118), 1, + STATE(111), 1, sym_parenthesized_expression, - [84312] = 3, - ACTIONS(1203), 1, + STATE(2167), 1, sym_comment, - ACTIONS(4016), 1, + [94213] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3949), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(461), 1, sym_statement_block, - [84322] = 3, - ACTIONS(1203), 1, + STATE(2168), 1, sym_comment, - ACTIONS(4012), 1, + [94229] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(110), 1, + STATE(117), 1, sym_parenthesized_expression, - [84332] = 3, - ACTIONS(1203), 1, + STATE(2169), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1533), 1, - sym_statement_block, - [84342] = 3, - ACTIONS(1203), 1, + [94245] = 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, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_statement_block, - [84352] = 2, - ACTIONS(1203), 1, + [94261] = 5, + 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, + sym_comment, + [94277] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2172), 1, sym_comment, - ACTIONS(4020), 2, + ACTIONS(3959), 2, sym__automatic_semicolon, anon_sym_SEMI, - [84360] = 3, - ACTIONS(1203), 1, + [94291] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2173), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1547), 1, - sym_statement_block, - [84370] = 3, - ACTIONS(1203), 1, + STATE(2204), 1, + sym_formal_parameters, + [94307] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2174), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_statement_block, - [84380] = 3, - ACTIONS(1203), 1, + ACTIONS(3961), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [94321] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2175), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_statement_block, - [84390] = 3, - ACTIONS(1203), 1, + ACTIONS(3865), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [94335] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2176), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(1749), 2, + anon_sym_else, + anon_sym_while, + [94349] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(1552), 1, + STATE(1579), 1, sym_statement_block, - [84400] = 3, - ACTIONS(1203), 1, + STATE(2177), 1, sym_comment, - ACTIONS(3729), 1, + [94365] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2113), 1, - sym_statement_block, - [84410] = 3, - ACTIONS(1203), 1, + STATE(2178), 1, sym_comment, - ACTIONS(4022), 1, - anon_sym_LBRACE, - STATE(1276), 1, + STATE(2253), 1, sym_statement_block, - [84420] = 3, - ACTIONS(1203), 1, + [94381] = 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, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1553), 1, - sym_statement_block, - [84430] = 2, - ACTIONS(1203), 1, + [94397] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3969), 1, + sym_identifier, + ACTIONS(3971), 1, + anon_sym_STAR, + STATE(2180), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_else, - anon_sym_while, - [84438] = 3, - ACTIONS(1203), 1, + [94413] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2181), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1554), 1, - sym_statement_block, - [84448] = 3, - ACTIONS(1203), 1, + ACTIONS(2252), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [94427] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3973), 1, + anon_sym_LPAREN, + STATE(2182), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1555), 1, - sym_statement_block, - [84458] = 3, - ACTIONS(1203), 1, + STATE(2290), 1, + sym_parenthesized_expression, + [94443] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2183), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_statement_block, - [84468] = 3, - ACTIONS(1203), 1, + ACTIONS(3975), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [94457] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2184), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1557), 1, - sym_statement_block, - [84478] = 3, - ACTIONS(1203), 1, + ACTIONS(1735), 2, + anon_sym_else, + anon_sym_while, + [94471] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2185), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1561), 1, - sym_statement_block, - [84488] = 3, - ACTIONS(1203), 1, + ACTIONS(3977), 2, + sym_jsx_identifier, + sym_identifier, + [94485] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2186), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1528), 1, - sym_statement_block, - [84498] = 3, - ACTIONS(1203), 1, + STATE(2271), 1, + sym_formal_parameters, + [94501] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2187), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(3979), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [94515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(1562), 1, - sym_statement_block, - [84508] = 3, - ACTIONS(1203), 1, + STATE(2188), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1543), 1, + STATE(2289), 1, sym_statement_block, - [84518] = 3, - ACTIONS(1203), 1, + [94531] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2189), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_LPAREN, - STATE(105), 1, - sym_parenthesized_expression, - [84528] = 2, - ACTIONS(1203), 1, + ACTIONS(3981), 2, + sym_jsx_identifier, + sym_identifier, + [94545] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2190), 1, sym_comment, - ACTIONS(2265), 2, + ACTIONS(2238), 2, sym__automatic_semicolon, anon_sym_SEMI, - [84536] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1657), 2, - anon_sym_else, - anon_sym_while, - [84544] = 3, - ACTIONS(1203), 1, + [94559] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, + anon_sym_STAR, + STATE(2191), 1, sym_comment, - ACTIONS(2729), 1, + [94575] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - ACTIONS(4024), 1, - anon_sym_EQ_GT, - [84554] = 3, - ACTIONS(1203), 1, + STATE(2192), 1, sym_comment, - ACTIONS(4018), 1, + STATE(2369), 1, + sym_formal_parameters, + [94591] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3469), 1, anon_sym_LBRACE, - STATE(1559), 1, - sym_statement_block, - [84564] = 3, - ACTIONS(1203), 1, + STATE(203), 1, + sym_class_body, + STATE(2193), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1558), 1, - sym_statement_block, - [84574] = 3, - ACTIONS(1203), 1, + [94607] = 5, + 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, sym_comment, - ACTIONS(2729), 1, - anon_sym_LPAREN, - ACTIONS(4026), 1, - anon_sym_EQ_GT, - [84584] = 3, - ACTIONS(1203), 1, + [94623] = 5, + 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, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym_statement_block, - [84594] = 2, - ACTIONS(1203), 1, + [94639] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2196), 1, sym_comment, - ACTIONS(3994), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [84602] = 3, + STATE(2328), 1, + sym_formal_parameters, + [94655] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3348), 1, + sym_private_property_identifier, + STATE(2197), 1, sym_comment, - ACTIONS(4028), 1, + [94671] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3995), 1, sym_identifier, - ACTIONS(4030), 1, - anon_sym_STAR, - [84612] = 2, - ACTIONS(1203), 1, + ACTIONS(3997), 1, + sym_private_property_identifier, + STATE(2198), 1, sym_comment, - ACTIONS(3985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [84620] = 2, - ACTIONS(1203), 1, + [94687] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3999), 1, + anon_sym_LBRACE, + STATE(2199), 1, + sym_comment, + STATE(2572), 1, + sym_switch_body, + [94703] = 5, + 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, sym_comment, - ACTIONS(4032), 2, + [94719] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2201), 1, + sym_comment, + ACTIONS(4003), 2, sym__automatic_semicolon, anon_sym_SEMI, - [84628] = 3, - ACTIONS(1203), 1, + [94733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2202), 1, sym_comment, - ACTIONS(4034), 1, + STATE(2329), 1, + sym_formal_parameters, + [94749] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, anon_sym_LBRACE, - STATE(2103), 1, + STATE(1360), 1, sym_statement_block, - [84638] = 3, - ACTIONS(1203), 1, + STATE(2203), 1, sym_comment, - ACTIONS(4022), 1, + [94765] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4005), 1, anon_sym_LBRACE, - STATE(1290), 1, + STATE(201), 1, sym_statement_block, - [84648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4036), 1, - sym_identifier, - ACTIONS(4038), 1, - anon_sym_STAR, - [84658] = 3, - ACTIONS(1203), 1, + STATE(2204), 1, sym_comment, - ACTIONS(4040), 1, + [94781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4007), 1, anon_sym_LBRACE, - STATE(699), 1, + STATE(746), 1, sym_switch_body, - [84668] = 3, - ACTIONS(1203), 1, + STATE(2205), 1, sym_comment, - ACTIONS(4042), 1, + [94797] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4009), 1, anon_sym_LPAREN, - STATE(113), 1, + STATE(115), 1, sym__for_header, - [84678] = 3, - ACTIONS(1203), 1, + STATE(2206), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1293), 1, - sym_class_body, - [84688] = 3, - ACTIONS(1203), 1, + [94813] = 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_comment, - ACTIONS(4022), 1, - anon_sym_LBRACE, - STATE(1295), 1, - sym_statement_block, - [84698] = 2, - ACTIONS(1203), 1, + [94829] = 5, + 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, sym_comment, - ACTIONS(1655), 2, + [94845] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2209), 1, + sym_comment, + ACTIONS(1727), 2, anon_sym_else, anon_sym_while, - [84706] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4022), 1, - anon_sym_LBRACE, - STATE(1296), 1, - sym_statement_block, - [84716] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4044), 1, + [94859] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3973), 1, anon_sym_LPAREN, - STATE(2519), 1, + STATE(2210), 1, + sym_comment, + STATE(2536), 1, sym_parenthesized_expression, - [84726] = 2, - ACTIONS(1203), 1, + [94875] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2211), 1, + sym_comment, + ACTIONS(1725), 2, + anon_sym_else, + anon_sym_while, + [94889] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2212), 1, sym_comment, - ACTIONS(4046), 2, + ACTIONS(4011), 2, sym__automatic_semicolon, anon_sym_SEMI, - [84734] = 2, - ACTIONS(1203), 1, + [94903] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2213), 1, sym_comment, - ACTIONS(4048), 2, + ACTIONS(4013), 2, sym__automatic_semicolon, anon_sym_SEMI, - [84742] = 3, - ACTIONS(1203), 1, + [94917] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4015), 1, + sym_identifier, + ACTIONS(4017), 1, + anon_sym_STAR, + STATE(2214), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym_statement_block, - [84752] = 2, - ACTIONS(1203), 1, + [94933] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2215), 1, sym_comment, - ACTIONS(2293), 2, + ACTIONS(2240), 2, sym__automatic_semicolon, anon_sym_SEMI, - [84760] = 3, - ACTIONS(1203), 1, + [94947] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2216), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2340), 1, - sym_formal_parameters, - [84770] = 2, - ACTIONS(1203), 1, + ACTIONS(4019), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [94961] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2217), 1, sym_comment, - ACTIONS(2257), 2, + ACTIONS(2242), 2, sym__automatic_semicolon, anon_sym_SEMI, - [84778] = 3, - ACTIONS(1203), 1, + [94975] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2218), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_statement_block, - [84788] = 3, - ACTIONS(1203), 1, + ACTIONS(4021), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [94989] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2219), 1, sym_comment, - ACTIONS(4018), 1, + ACTIONS(1723), 2, + anon_sym_else, + anon_sym_while, + [95003] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1535), 1, - sym_statement_block, - [84798] = 3, - ACTIONS(1203), 1, + STATE(1348), 1, + sym_class_body, + STATE(2220), 1, sym_comment, - ACTIONS(4018), 1, + [95019] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4023), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(1146), 1, sym_statement_block, - [84808] = 3, - ACTIONS(1203), 1, + STATE(2221), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1531), 1, - sym_statement_block, - [84818] = 3, - ACTIONS(1203), 1, + [95035] = 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, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1530), 1, - sym_statement_block, - [84828] = 3, - ACTIONS(1203), 1, + [95051] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2223), 1, sym_comment, - ACTIONS(4018), 1, + STATE(2245), 1, + sym_formal_parameters, + [95067] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4023), 1, anon_sym_LBRACE, - STATE(1529), 1, + STATE(1151), 1, sym_statement_block, - [84838] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1621), 2, - anon_sym_else, - anon_sym_while, - [84846] = 2, - ACTIONS(1203), 1, + STATE(2224), 1, sym_comment, - ACTIONS(1653), 2, - anon_sym_else, - anon_sym_while, - [84854] = 3, + [95083] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4050), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4025), 1, sym_identifier, - ACTIONS(4052), 1, + ACTIONS(4027), 1, anon_sym_STAR, - [84864] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1649), 2, - anon_sym_else, - anon_sym_while, - [84872] = 3, - ACTIONS(1203), 1, + STATE(2225), 1, sym_comment, - ACTIONS(3620), 1, - anon_sym_LBRACE, - STATE(2096), 1, - sym_class_body, - [84882] = 3, - ACTIONS(1203), 1, + [95099] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, + anon_sym_LPAREN, + STATE(108), 1, + sym_parenthesized_expression, + STATE(2226), 1, sym_comment, - ACTIONS(4034), 1, + [95115] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, anon_sym_LBRACE, - STATE(2094), 1, + STATE(1350), 1, sym_statement_block, - [84892] = 2, - ACTIONS(1203), 1, + STATE(2227), 1, sym_comment, - ACTIONS(1647), 2, - anon_sym_else, - anon_sym_while, - [84900] = 3, - ACTIONS(1203), 1, + [95131] = 5, + 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, sym_comment, - ACTIONS(4034), 1, - anon_sym_LBRACE, - STATE(2092), 1, - sym_statement_block, - [84910] = 3, - ACTIONS(1203), 1, + [95147] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2229), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(1717), 2, + anon_sym_else, + anon_sym_while, + [95161] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1312), 1, + STATE(1270), 1, sym_class_body, - [84920] = 2, - ACTIONS(1203), 1, + STATE(2230), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_else, - anon_sym_while, - [84928] = 3, - ACTIONS(1203), 1, + [95177] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2231), 1, sym_comment, - ACTIONS(4054), 1, + ACTIONS(4029), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4056), 1, + [95191] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2232), 1, + sym_comment, + ACTIONS(4031), 2, sym__automatic_semicolon, - [84938] = 3, - ACTIONS(1203), 1, + anon_sym_SEMI, + [95205] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2233), 1, sym_comment, - ACTIONS(4022), 1, - anon_sym_LBRACE, - STATE(1315), 1, - sym_statement_block, - [84948] = 3, - ACTIONS(1203), 1, + ACTIONS(2279), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [95219] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4033), 1, + anon_sym_SEMI, + ACTIONS(4035), 1, + sym__automatic_semicolon, + STATE(2234), 1, + sym_comment, + [95235] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2235), 1, + sym_comment, + ACTIONS(2281), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [95249] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2236), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(3858), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95263] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3434), 1, anon_sym_LBRACE, - STATE(1316), 1, - sym_statement_block, - [84958] = 3, - ACTIONS(1203), 1, + STATE(705), 1, + sym_class_body, + STATE(2237), 1, sym_comment, - ACTIONS(4058), 1, + [95279] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4037), 1, anon_sym_SEMI, - ACTIONS(4060), 1, + ACTIONS(4039), 1, sym__automatic_semicolon, - [84968] = 3, - ACTIONS(1203), 1, + STATE(2238), 1, sym_comment, - ACTIONS(4062), 1, + [95295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4041), 1, anon_sym_SEMI, - ACTIONS(4064), 1, + ACTIONS(4043), 1, sym__automatic_semicolon, - [84978] = 3, - ACTIONS(1203), 1, + STATE(2239), 1, sym_comment, - ACTIONS(4066), 1, + [95311] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4045), 1, anon_sym_SEMI, - ACTIONS(4068), 1, + ACTIONS(4047), 1, sym__automatic_semicolon, - [84988] = 3, - ACTIONS(1203), 1, + STATE(2240), 1, sym_comment, - ACTIONS(4070), 1, + [95327] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4049), 1, anon_sym_LBRACE, - STATE(1153), 1, + STATE(480), 1, sym_statement_block, - [84998] = 3, - ACTIONS(1203), 1, + STATE(2241), 1, sym_comment, - ACTIONS(4022), 1, - anon_sym_LBRACE, - STATE(1319), 1, - sym_statement_block, - [85008] = 3, - ACTIONS(1203), 1, + [95343] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2242), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1320), 1, - sym_class_body, - [85018] = 3, - ACTIONS(1203), 1, + STATE(2346), 1, + sym_formal_parameters, + [95359] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2243), 1, sym_comment, - ACTIONS(4018), 1, + STATE(2347), 1, + sym_formal_parameters, + [95375] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4051), 1, anon_sym_LBRACE, - STATE(1532), 1, + STATE(709), 1, sym_statement_block, - [85028] = 3, - ACTIONS(1203), 1, + STATE(2244), 1, sym_comment, - ACTIONS(4018), 1, + [95391] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(1541), 1, - sym_statement_block, - [85038] = 3, - ACTIONS(1203), 1, + STATE(2245), 1, sym_comment, - ACTIONS(4034), 1, - anon_sym_LBRACE, - STATE(2066), 1, + STATE(2350), 1, sym_statement_block, - [85048] = 3, - ACTIONS(1203), 1, + [95407] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2246), 1, sym_comment, - ACTIONS(3620), 1, - anon_sym_LBRACE, - STATE(2065), 1, - sym_class_body, - [85058] = 3, - ACTIONS(1203), 1, + STATE(2351), 1, + sym_formal_parameters, + [95423] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4053), 1, + sym_identifier, + ACTIONS(4055), 1, + anon_sym_STAR, + STATE(2247), 1, sym_comment, - ACTIONS(4072), 1, + [95439] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4057), 1, anon_sym_LPAREN, - STATE(780), 1, + STATE(862), 1, sym_parenthesized_expression, - [85068] = 3, - ACTIONS(1203), 1, + STATE(2248), 1, sym_comment, - ACTIONS(3597), 1, - anon_sym_LBRACE, - STATE(1139), 1, - sym_class_body, - [85078] = 3, - ACTIONS(1203), 1, + [95455] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2249), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(3853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95469] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4059), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(866), 1, sym_statement_block, - [85088] = 3, - ACTIONS(3), 1, + STATE(2250), 1, sym_comment, - ACTIONS(4076), 1, - sym_identifier, - ACTIONS(4078), 1, - sym_private_property_identifier, - [85098] = 3, - ACTIONS(1203), 1, + [95485] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2251), 1, sym_comment, - ACTIONS(3743), 1, - anon_sym_DOT, - ACTIONS(3772), 1, - anon_sym_GT, - [85108] = 3, - ACTIONS(1203), 1, + ACTIONS(3809), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4061), 1, + anon_sym_LBRACE, + STATE(917), 1, + sym_statement_block, + STATE(2252), 1, sym_comment, - ACTIONS(3739), 1, - anon_sym_COLON, - ACTIONS(3772), 1, - anon_sym_GT, - [85118] = 3, - ACTIONS(1203), 1, + [95515] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2253), 1, sym_comment, - ACTIONS(4012), 1, + ACTIONS(4063), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [95529] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(114), 1, - sym_parenthesized_expression, - [85128] = 2, - ACTIONS(1203), 1, + STATE(2254), 1, sym_comment, - ACTIONS(1645), 2, - anon_sym_else, - anon_sym_while, - [85136] = 3, - ACTIONS(1203), 1, + STATE(2354), 1, + sym_formal_parameters, + [95545] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2255), 1, sym_comment, - ACTIONS(3461), 1, + STATE(2361), 1, + sym_formal_parameters, + [95561] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3465), 1, anon_sym_LBRACE, - STATE(167), 1, + STATE(187), 1, sym_class_body, - [85146] = 3, - ACTIONS(1203), 1, + STATE(2256), 1, sym_comment, - ACTIONS(4080), 1, + [95577] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4065), 1, anon_sym_LBRACE, STATE(169), 1, sym_statement_block, - [85156] = 3, - ACTIONS(3), 1, + STATE(2257), 1, sym_comment, - ACTIONS(4082), 1, - sym_identifier, - ACTIONS(4084), 1, - anon_sym_STAR, - [85166] = 2, - ACTIONS(1203), 1, + [95593] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2258), 1, sym_comment, - ACTIONS(1677), 2, + ACTIONS(1715), 2, anon_sym_else, anon_sym_while, - [85174] = 3, - ACTIONS(1203), 1, + [95607] = 5, + 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, sym_comment, - ACTIONS(4022), 1, + [95623] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3409), 1, anon_sym_LBRACE, - STATE(1323), 1, - sym_statement_block, - [85184] = 3, - ACTIONS(1203), 1, + STATE(1159), 1, + sym_class_body, + STATE(2260), 1, sym_comment, - ACTIONS(4070), 1, - anon_sym_LBRACE, - STATE(1128), 1, - sym_statement_block, - [85194] = 3, - ACTIONS(1203), 1, + [95639] = 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, sym_comment, - ACTIONS(4070), 1, - anon_sym_LBRACE, - STATE(1123), 1, - sym_statement_block, - [85204] = 3, - ACTIONS(1203), 1, + [95655] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2262), 1, sym_comment, - ACTIONS(3739), 1, + STATE(2376), 1, + sym_formal_parameters, + [95671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3688), 1, anon_sym_COLON, - ACTIONS(3741), 1, + ACTIONS(3805), 1, anon_sym_GT, - [85214] = 3, - ACTIONS(1203), 1, + STATE(2263), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_class_body, - [85224] = 3, - ACTIONS(1203), 1, + [95687] = 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, sym_comment, - ACTIONS(3741), 1, - anon_sym_GT, - ACTIONS(3743), 1, + [95703] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3692), 1, anon_sym_DOT, - [85234] = 3, - ACTIONS(1203), 1, + ACTIONS(3805), 1, + anon_sym_GT, + STATE(2265), 1, sym_comment, - ACTIONS(4086), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_statement_block, - [85244] = 2, - ACTIONS(1203), 1, + [95719] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2266), 1, sym_comment, - ACTIONS(4088), 2, - anon_sym_GT, - anon_sym_DOT, - [85252] = 2, - ACTIONS(3), 1, + ACTIONS(1645), 2, + anon_sym_else, + anon_sym_while, + [95733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2267), 1, sym_comment, - ACTIONS(4090), 2, - sym_jsx_identifier, - sym_identifier, - [85260] = 3, - ACTIONS(1203), 1, + STATE(2379), 1, + sym_formal_parameters, + [95749] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2268), 1, sym_comment, - ACTIONS(3567), 1, + STATE(2384), 1, + sym_formal_parameters, + [95765] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3473), 1, anon_sym_LBRACE, - STATE(653), 1, + STATE(575), 1, sym_class_body, - [85270] = 3, - ACTIONS(1203), 1, + STATE(2269), 1, sym_comment, - ACTIONS(4092), 1, + [95781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4071), 1, anon_sym_LBRACE, - STATE(646), 1, + STATE(584), 1, sym_statement_block, - [85280] = 3, - ACTIONS(1203), 1, + STATE(2270), 1, sym_comment, - ACTIONS(3729), 1, + [95797] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2260), 1, - sym_statement_block, - [85290] = 3, - ACTIONS(1203), 1, + STATE(2271), 1, sym_comment, - ACTIONS(4044), 1, - anon_sym_LPAREN, - STATE(2266), 1, - sym_parenthesized_expression, - [85300] = 3, - ACTIONS(3), 1, + STATE(2385), 1, + sym_statement_block, + [95813] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2272), 1, sym_comment, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4096), 1, - anon_sym_STAR, - [85310] = 3, - ACTIONS(1203), 1, + ACTIONS(1743), 2, + anon_sym_else, + anon_sym_while, + [95827] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2273), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(1747), 2, + anon_sym_else, + anon_sym_while, + [95841] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(175), 1, + STATE(185), 1, sym_statement_block, - [85320] = 3, - ACTIONS(1203), 1, + STATE(2274), 1, sym_comment, - ACTIONS(4080), 1, + [95857] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(177), 1, + STATE(184), 1, sym_statement_block, - [85330] = 3, - ACTIONS(1203), 1, + STATE(2275), 1, sym_comment, - ACTIONS(4098), 1, - anon_sym_SEMI, - ACTIONS(4100), 1, - sym__automatic_semicolon, - [85340] = 3, - ACTIONS(1203), 1, + [95873] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2276), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_LBRACE, - STATE(1544), 1, - sym_statement_block, - [85350] = 3, - ACTIONS(1203), 1, + ACTIONS(1737), 2, + anon_sym_else, + anon_sym_while, + [95887] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2277), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [95901] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3465), 1, anon_sym_LBRACE, - STATE(179), 1, + STATE(181), 1, sym_class_body, - [85360] = 3, - ACTIONS(1203), 1, + STATE(2278), 1, sym_comment, - ACTIONS(4092), 1, + [95917] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4071), 1, anon_sym_LBRACE, STATE(588), 1, sym_statement_block, - [85370] = 3, - ACTIONS(1203), 1, + STATE(2279), 1, sym_comment, - ACTIONS(4092), 1, + [95933] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4071), 1, anon_sym_LBRACE, - STATE(586), 1, + STATE(590), 1, sym_statement_block, - [85380] = 3, - ACTIONS(1203), 1, + STATE(2280), 1, sym_comment, - ACTIONS(3567), 1, + [95949] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3473), 1, anon_sym_LBRACE, - STATE(579), 1, + STATE(592), 1, sym_class_body, - [85390] = 3, - ACTIONS(1203), 1, + STATE(2281), 1, sym_comment, - ACTIONS(4102), 1, - anon_sym_SEMI, - ACTIONS(4104), 1, - sym__automatic_semicolon, - [85400] = 3, - ACTIONS(1203), 1, + [95965] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2282), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_LPAREN, - STATE(108), 1, - sym_parenthesized_expression, - [85410] = 3, - ACTIONS(1203), 1, + ACTIONS(1729), 2, + anon_sym_else, + anon_sym_while, + [95979] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2283), 1, sym_comment, - ACTIONS(4080), 1, + 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(181), 1, + STATE(176), 1, + sym_statement_block, + STATE(2284), 1, + sym_comment, + [96009] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4071), 1, + anon_sym_LBRACE, + STATE(593), 1, sym_statement_block, - [85420] = 3, - ACTIONS(1203), 1, + STATE(2285), 1, sym_comment, - ACTIONS(4092), 1, + [96025] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3811), 1, anon_sym_LBRACE, - STATE(569), 1, + STATE(594), 1, sym_statement_block, - [85430] = 3, - ACTIONS(1203), 1, + STATE(2286), 1, sym_comment, - ACTIONS(3778), 1, + [96041] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4023), 1, anon_sym_LBRACE, - STATE(548), 1, + STATE(1163), 1, sym_statement_block, - [85440] = 3, - ACTIONS(1203), 1, + STATE(2287), 1, sym_comment, - ACTIONS(4106), 1, - anon_sym_SEMI, - ACTIONS(4108), 1, - sym__automatic_semicolon, - [85450] = 3, - ACTIONS(1203), 1, + [96057] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2288), 1, sym_comment, - ACTIONS(4110), 1, - anon_sym_SEMI, - ACTIONS(4112), 1, - sym__automatic_semicolon, - [85460] = 3, - ACTIONS(1203), 1, + ACTIONS(1721), 2, + anon_sym_else, + anon_sym_while, + [96071] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2289), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2339), 1, - sym_formal_parameters, - [85470] = 2, - ACTIONS(1203), 1, + ACTIONS(1719), 2, + anon_sym_else, + anon_sym_while, + [96085] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2290), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(1713), 2, anon_sym_else, anon_sym_while, - [85478] = 2, - ACTIONS(1203), 1, + [96099] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2291), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85486] = 3, - ACTIONS(1203), 1, + [96113] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2292), 1, sym_comment, - ACTIONS(4114), 1, - anon_sym_SEMI, - ACTIONS(4116), 1, - sym__automatic_semicolon, - [85496] = 3, - ACTIONS(1203), 1, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [96127] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2293), 1, sym_comment, - ACTIONS(4118), 1, - anon_sym_SEMI, - ACTIONS(4120), 1, - sym__automatic_semicolon, - [85506] = 3, - ACTIONS(1203), 1, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [96141] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, + anon_sym_LBRACE, + STATE(1309), 1, + sym_statement_block, + STATE(2294), 1, sym_comment, - ACTIONS(4012), 1, + [96157] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(112), 1, + STATE(91), 1, sym_parenthesized_expression, - [85516] = 3, - ACTIONS(1203), 1, + STATE(2295), 1, sym_comment, - ACTIONS(4122), 1, + [96173] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4075), 1, anon_sym_LBRACE, - STATE(449), 1, + STATE(459), 1, sym_statement_block, - [85526] = 3, - ACTIONS(1203), 1, + STATE(2296), 1, sym_comment, - ACTIONS(4012), 1, + [96189] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(116), 1, + STATE(92), 1, sym_parenthesized_expression, - [85536] = 2, - ACTIONS(1203), 1, + STATE(2297), 1, sym_comment, - ACTIONS(1685), 2, - anon_sym_else, - anon_sym_while, - [85544] = 2, - ACTIONS(3), 1, + [96205] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4077), 1, + anon_sym_LBRACE, + STATE(2024), 1, + sym_statement_block, + STATE(2298), 1, sym_comment, - ACTIONS(4124), 2, - sym_jsx_identifier, - sym_identifier, - [85552] = 2, - ACTIONS(1203), 1, + [96221] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1546), 1, + sym_statement_block, + STATE(2299), 1, sym_comment, - ACTIONS(4126), 2, + [96237] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2300), 1, + sym_comment, + ACTIONS(4079), 2, sym__automatic_semicolon, anon_sym_SEMI, - [85560] = 2, - ACTIONS(1203), 1, + [96251] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2301), 1, + sym_comment, + STATE(2478), 1, + sym_formal_parameters, + [96267] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1547), 1, + sym_statement_block, + STATE(2302), 1, + sym_comment, + [96283] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2303), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85568] = 3, - ACTIONS(3), 1, + [96297] = 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, sym_comment, - ACTIONS(4128), 1, - sym_identifier, - ACTIONS(4130), 1, - anon_sym_STAR, - [85578] = 3, - ACTIONS(1203), 1, + [96313] = 5, + 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, sym_comment, - ACTIONS(4070), 1, + [96329] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(1142), 1, + STATE(1566), 1, sym_statement_block, - [85588] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85596] = 2, - ACTIONS(1203), 1, + STATE(2306), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85604] = 2, - ACTIONS(1203), 1, + [96345] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2307), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85612] = 2, - ACTIONS(1203), 1, + STATE(2419), 1, + sym_formal_parameters, + [96361] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2308), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85620] = 2, - ACTIONS(1203), 1, + [96375] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2309), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85628] = 3, - ACTIONS(1203), 1, + [96389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2310), 1, sym_comment, - ACTIONS(3597), 1, + STATE(2420), 1, + sym_formal_parameters, + [96405] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4023), 1, anon_sym_LBRACE, - STATE(1146), 1, - sym_class_body, - [85638] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4132), 1, - anon_sym_SEMI, - ACTIONS(4134), 1, - sym__automatic_semicolon, - [85648] = 2, - ACTIONS(1203), 1, + STATE(1100), 1, + sym_statement_block, + STATE(2311), 1, sym_comment, - ACTIONS(2267), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85656] = 2, - ACTIONS(1203), 1, + [96421] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2312), 1, sym_comment, - ACTIONS(2241), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85664] = 2, - ACTIONS(1203), 1, + ACTIONS(4081), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [96435] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2313), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85672] = 2, - ACTIONS(1203), 1, + [96449] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2314), 1, sym_comment, - ACTIONS(2307), 2, + ACTIONS(2263), 2, sym__automatic_semicolon, anon_sym_SEMI, - [85680] = 2, - ACTIONS(1203), 1, + [96463] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2315), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85688] = 2, - ACTIONS(1203), 1, + [96477] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2316), 1, sym_comment, - ACTIONS(4136), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85696] = 2, - ACTIONS(1203), 1, + ACTIONS(3773), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [96491] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1542), 1, + sym_statement_block, + STATE(2317), 1, sym_comment, - ACTIONS(4138), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85704] = 2, - ACTIONS(1203), 1, + [96507] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3566), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_class_body, + STATE(2318), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85712] = 2, - ACTIONS(1203), 1, + [96523] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2319), 1, sym_comment, - ACTIONS(4140), 2, + ACTIONS(4083), 2, sym__automatic_semicolon, anon_sym_SEMI, - [85720] = 2, - ACTIONS(1203), 1, + [96537] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1543), 1, + sym_statement_block, + STATE(2320), 1, + sym_comment, + [96553] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2321), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85728] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4042), 1, - anon_sym_LPAREN, - STATE(84), 1, - sym__for_header, - [85738] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4142), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_switch_body, - [85748] = 3, - ACTIONS(1203), 1, + [96567] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2322), 1, sym_comment, - ACTIONS(4144), 1, + ACTIONS(4085), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [96581] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4087), 1, anon_sym_LBRACE, - STATE(728), 1, + STATE(800), 1, sym_switch_body, - [85758] = 3, - ACTIONS(1203), 1, + STATE(2323), 1, sym_comment, - ACTIONS(4042), 1, + [96597] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4009), 1, anon_sym_LPAREN, - STATE(86), 1, + STATE(107), 1, sym__for_header, - [85768] = 2, - ACTIONS(1203), 1, + STATE(2324), 1, sym_comment, - ACTIONS(4146), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85776] = 2, - ACTIONS(1203), 1, + [96613] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2325), 1, sym_comment, - ACTIONS(4148), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85784] = 2, - ACTIONS(1203), 1, + STATE(2433), 1, + sym_formal_parameters, + [96629] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, + anon_sym_LBRACE, + STATE(1293), 1, + sym_statement_block, + STATE(2326), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85792] = 2, - ACTIONS(1203), 1, + [96645] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4089), 1, + sym_identifier, + ACTIONS(4091), 1, + anon_sym_STAR, + STATE(2327), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85800] = 2, - ACTIONS(1203), 1, + [96661] = 5, + 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, sym_comment, - ACTIONS(2255), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85808] = 2, - ACTIONS(1203), 1, + [96677] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4005), 1, + anon_sym_LBRACE, + STATE(220), 1, + sym_statement_block, + STATE(2329), 1, + sym_comment, + [96693] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2330), 1, sym_comment, - ACTIONS(4150), 2, + ACTIONS(4093), 2, sym__automatic_semicolon, anon_sym_SEMI, - [85816] = 2, - ACTIONS(1203), 1, + [96707] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2331), 1, sym_comment, - ACTIONS(4152), 2, + ACTIONS(4095), 2, sym__automatic_semicolon, anon_sym_SEMI, - [85824] = 2, - ACTIONS(1203), 1, + [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, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85832] = 2, - ACTIONS(1203), 1, + [96737] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2333), 1, sym_comment, - ACTIONS(2305), 2, + ACTIONS(2267), 2, sym__automatic_semicolon, anon_sym_SEMI, - [85840] = 2, - ACTIONS(1203), 1, + [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, - ACTIONS(3952), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [85848] = 2, - ACTIONS(1203), 1, + [96767] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2335), 1, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2269), 2, sym__automatic_semicolon, anon_sym_SEMI, - [85856] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3493), 1, + [96781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3469), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(215), 1, sym_class_body, - [85866] = 3, - ACTIONS(1203), 1, + STATE(2336), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2391), 1, - sym_formal_parameters, - [85876] = 3, - ACTIONS(1203), 1, + [96797] = 5, + 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, + sym_comment, + [96813] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2338), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(3764), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96827] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, anon_sym_LBRACE, - STATE(1258), 1, + STATE(1283), 1, sym_statement_block, - [85886] = 2, - ACTIONS(1203), 1, + STATE(2339), 1, sym_comment, - ACTIONS(4154), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [85894] = 3, - ACTIONS(1203), 1, + [96843] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2340), 1, sym_comment, - ACTIONS(4012), 1, + ACTIONS(4097), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [96857] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(92), 1, - sym_parenthesized_expression, - [85904] = 3, - ACTIONS(1203), 1, + STATE(2341), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(1732), 1, - sym_statement_block, - [85914] = 2, - ACTIONS(1203), 1, + STATE(2437), 1, + sym_formal_parameters, + [96873] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2342), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85922] = 2, - ACTIONS(1203), 1, + [96887] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3409), 1, + anon_sym_LBRACE, + STATE(1158), 1, + sym_class_body, + STATE(2343), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85930] = 2, - ACTIONS(1203), 1, + [96903] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2344), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85938] = 2, - ACTIONS(1203), 1, + [96917] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2345), 1, sym_comment, - ACTIONS(1631), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [85946] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4012), 1, - anon_sym_LPAREN, - STATE(93), 1, - sym_parenthesized_expression, - [85956] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2383), 1, - sym_formal_parameters, - [85966] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4022), 1, + [96931] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4051), 1, anon_sym_LBRACE, - STATE(1252), 1, + STATE(796), 1, sym_statement_block, - [85976] = 3, - ACTIONS(1203), 1, + STATE(2346), 1, sym_comment, - ACTIONS(4156), 1, + [96947] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4051), 1, anon_sym_LBRACE, - STATE(212), 1, + STATE(797), 1, sym_statement_block, - [85986] = 2, - ACTIONS(1203), 1, + STATE(2347), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [85994] = 2, - ACTIONS(1203), 1, + [96963] = 5, + 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, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [86002] = 3, - ACTIONS(1203), 1, + [96979] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2349), 1, + sym_comment, + ACTIONS(2461), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [96993] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2350), 1, + sym_comment, + ACTIONS(4099), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [97007] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_comment, - ACTIONS(4158), 1, + STATE(2438), 1, + sym_statement_block, + [97023] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4101), 1, anon_sym_SEMI, - ACTIONS(4160), 1, + ACTIONS(4103), 1, sym__automatic_semicolon, - [86012] = 2, - ACTIONS(1203), 1, + STATE(2352), 1, sym_comment, - ACTIONS(1986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [86020] = 2, - ACTIONS(1203), 1, + [97039] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2353), 1, sym_comment, - ACTIONS(1631), 2, - anon_sym_else, - anon_sym_while, - [86028] = 3, - ACTIONS(1203), 1, + STATE(2443), 1, + sym_formal_parameters, + [97055] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2354), 1, + sym_comment, + STATE(2445), 1, + sym_statement_block, + [97071] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2355), 1, sym_comment, - ACTIONS(4162), 1, + STATE(2447), 1, + sym_formal_parameters, + [97087] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4105), 1, anon_sym_SEMI, - ACTIONS(4164), 1, + ACTIONS(4107), 1, sym__automatic_semicolon, - [86038] = 3, - ACTIONS(1203), 1, + STATE(2356), 1, sym_comment, - ACTIONS(4166), 1, + [97103] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4109), 1, anon_sym_SEMI, - ACTIONS(4168), 1, + ACTIONS(4111), 1, sym__automatic_semicolon, - [86048] = 3, - ACTIONS(1203), 1, + STATE(2357), 1, sym_comment, - ACTIONS(4170), 1, + [97119] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4113), 1, anon_sym_SEMI, - ACTIONS(4172), 1, + ACTIONS(4115), 1, sym__automatic_semicolon, - [86058] = 2, - ACTIONS(1203), 1, + STATE(2358), 1, sym_comment, - ACTIONS(1627), 2, - anon_sym_else, - anon_sym_while, - [86066] = 3, - ACTIONS(1203), 1, + [97135] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2359), 1, sym_comment, - ACTIONS(3739), 1, - anon_sym_COLON, - ACTIONS(3837), 1, - anon_sym_GT, - [86076] = 3, - ACTIONS(1203), 1, + STATE(2448), 1, + sym_formal_parameters, + [97151] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2360), 1, sym_comment, - ACTIONS(3743), 1, - anon_sym_DOT, - ACTIONS(3837), 1, - anon_sym_GT, - [86086] = 2, - ACTIONS(1203), 1, + STATE(2452), 1, + sym_formal_parameters, + [97167] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2361), 1, sym_comment, - ACTIONS(1675), 2, - anon_sym_else, - anon_sym_while, - [86094] = 3, - ACTIONS(1203), 1, + STATE(2453), 1, + sym_statement_block, + [97183] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2362), 1, sym_comment, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1242), 1, - sym_class_body, - [86104] = 2, - ACTIONS(1203), 1, + 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, sym_comment, - ACTIONS(1619), 2, - anon_sym_else, - anon_sym_while, - [86112] = 2, - ACTIONS(1203), 1, + STATE(2463), 1, + sym_formal_parameters, + [97215] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2364), 1, sym_comment, - ACTIONS(4174), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [86120] = 3, - ACTIONS(1203), 1, + STATE(2464), 1, + sym_formal_parameters, + [97231] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2365), 1, sym_comment, - ACTIONS(4176), 1, + STATE(2465), 1, + sym_formal_parameters, + [97247] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4117), 1, anon_sym_LPAREN, - STATE(856), 1, + STATE(701), 1, sym_parenthesized_expression, - [86130] = 3, - ACTIONS(1203), 1, + STATE(2366), 1, sym_comment, - ACTIONS(3513), 1, + [97263] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(685), 1, - sym_class_body, - [86140] = 3, - ACTIONS(1203), 1, + STATE(1549), 1, + sym_statement_block, + STATE(2367), 1, sym_comment, - ACTIONS(4178), 1, + [97279] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4119), 1, anon_sym_LBRACE, - STATE(850), 1, + STATE(699), 1, sym_statement_block, - [86150] = 2, - ACTIONS(1203), 1, + STATE(2368), 1, sym_comment, - ACTIONS(1617), 2, - anon_sym_else, - anon_sym_while, - [86158] = 3, - ACTIONS(1203), 1, + [97295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2369), 1, sym_comment, - ACTIONS(3191), 1, + STATE(2466), 1, + sym_statement_block, + [97311] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2411), 1, + STATE(2370), 1, + sym_comment, + STATE(2467), 1, sym_formal_parameters, - [86168] = 3, - ACTIONS(1203), 1, + [97327] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2371), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(4121), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [97341] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2413), 1, + STATE(2372), 1, + sym_comment, + STATE(2480), 1, sym_formal_parameters, - [86178] = 3, - ACTIONS(1203), 1, + [97357] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2373), 1, sym_comment, - ACTIONS(4180), 1, + STATE(2483), 1, + sym_formal_parameters, + [97373] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3506), 1, anon_sym_LBRACE, - STATE(689), 1, - sym_statement_block, - [86188] = 3, - ACTIONS(1203), 1, + STATE(180), 1, + sym_class_body, + STATE(2374), 1, sym_comment, - ACTIONS(3729), 1, + [97389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4123), 1, anon_sym_LBRACE, - STATE(2419), 1, + STATE(179), 1, sym_statement_block, - [86198] = 3, - ACTIONS(1203), 1, + STATE(2375), 1, sym_comment, - ACTIONS(3485), 1, + [97405] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(173), 1, - sym_class_body, - [86208] = 3, - ACTIONS(1203), 1, + STATE(2376), 1, sym_comment, - ACTIONS(4182), 1, + STATE(2484), 1, + sym_statement_block, + [97421] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(180), 1, + STATE(1563), 1, sym_statement_block, - [86218] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2421), 1, - sym_formal_parameters, - [86228] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3875), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [86236] = 2, - ACTIONS(1203), 1, + STATE(2377), 1, sym_comment, - ACTIONS(4184), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [86244] = 3, - ACTIONS(1203), 1, + [97437] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_statement_block, + STATE(2378), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2123), 1, - sym_formal_parameters, - [86254] = 3, - ACTIONS(1203), 1, + [97453] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2155), 1, + sym_statement_block, + STATE(2379), 1, sym_comment, - ACTIONS(3739), 1, + [97469] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3688), 1, anon_sym_COLON, - ACTIONS(3879), 1, + ACTIONS(3755), 1, anon_sym_GT, - [86264] = 3, - ACTIONS(1203), 1, + STATE(2380), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2430), 1, - sym_formal_parameters, - [86274] = 3, - ACTIONS(1203), 1, + [97485] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1560), 1, + sym_statement_block, + STATE(2381), 1, sym_comment, - ACTIONS(3743), 1, + [97501] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3692), 1, anon_sym_DOT, - ACTIONS(3879), 1, + ACTIONS(3755), 1, anon_sym_GT, - [86284] = 2, - ACTIONS(1203), 1, + STATE(2382), 1, sym_comment, - ACTIONS(1607), 2, + [97517] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2383), 1, + sym_comment, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [86292] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2436), 1, - sym_formal_parameters, - [86302] = 3, - ACTIONS(1203), 1, + [97531] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2384), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2445), 1, - sym_formal_parameters, - [86312] = 3, - ACTIONS(1203), 1, + STATE(2489), 1, + sym_statement_block, + [97547] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2385), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(4125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [97561] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(518), 1, + STATE(644), 1, sym_class_body, - [86322] = 3, - ACTIONS(1203), 1, + STATE(2386), 1, sym_comment, - ACTIONS(4186), 1, + [97577] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4127), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(645), 1, sym_statement_block, - [86332] = 3, - ACTIONS(1203), 1, + STATE(2387), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2446), 1, - sym_formal_parameters, - [86342] = 3, - ACTIONS(1203), 1, + [97593] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2388), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_formal_parameters, - [86352] = 3, - ACTIONS(1203), 1, + ACTIONS(4129), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [97607] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4131), 1, + sym_identifier, + ACTIONS(4133), 1, + anon_sym_STAR, + STATE(2389), 1, + sym_comment, + [97623] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2390), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3751), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [97637] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4123), 1, anon_sym_LBRACE, - STATE(2450), 1, + STATE(175), 1, sym_statement_block, - [86362] = 3, - ACTIONS(1203), 1, + STATE(2391), 1, sym_comment, - ACTIONS(4182), 1, + [97653] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4123), 1, anon_sym_LBRACE, - STATE(182), 1, + STATE(172), 1, sym_statement_block, - [86372] = 3, - ACTIONS(1203), 1, + STATE(2392), 1, sym_comment, - ACTIONS(4182), 1, + [97669] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(187), 1, + STATE(1552), 1, sym_statement_block, - [86382] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1607), 2, - anon_sym_else, - anon_sym_while, - [86390] = 3, - ACTIONS(3), 1, + STATE(2393), 1, sym_comment, - ACTIONS(4188), 1, - sym_identifier, - ACTIONS(4190), 1, - anon_sym_STAR, - [86400] = 3, - ACTIONS(1203), 1, + [97685] = 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, sym_comment, - ACTIONS(3485), 1, + [97701] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3506), 1, anon_sym_LBRACE, - STATE(189), 1, + STATE(171), 1, sym_class_body, - [86410] = 3, - ACTIONS(1203), 1, + STATE(2395), 1, sym_comment, - ACTIONS(4186), 1, + [97717] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4127), 1, anon_sym_LBRACE, - STATE(526), 1, + STATE(662), 1, sym_statement_block, - [86420] = 3, - ACTIONS(1203), 1, + STATE(2396), 1, sym_comment, - ACTIONS(4186), 1, + [97733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4127), 1, anon_sym_LBRACE, - STATE(527), 1, + STATE(667), 1, sym_statement_block, - [86430] = 3, - ACTIONS(1203), 1, + STATE(2397), 1, sym_comment, - ACTIONS(3475), 1, + [97749] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(529), 1, + STATE(666), 1, sym_class_body, - [86440] = 2, - ACTIONS(1203), 1, + STATE(2398), 1, sym_comment, - ACTIONS(4192), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [86448] = 2, - ACTIONS(1203), 1, + [97765] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2399), 1, sym_comment, - ACTIONS(1605), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [86456] = 3, - ACTIONS(1203), 1, + [97779] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2400), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(4135), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [97793] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4123), 1, anon_sym_LBRACE, - STATE(196), 1, + STATE(192), 1, sym_statement_block, - [86466] = 3, - ACTIONS(1203), 1, + STATE(2401), 1, sym_comment, - ACTIONS(4186), 1, + [97809] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4127), 1, anon_sym_LBRACE, - STATE(530), 1, + STATE(659), 1, sym_statement_block, - [86476] = 3, - ACTIONS(1203), 1, + STATE(2402), 1, sym_comment, - ACTIONS(3851), 1, + [97825] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3757), 1, anon_sym_LBRACE, - STATE(531), 1, + STATE(657), 1, sym_statement_block, - [86486] = 3, - ACTIONS(3), 1, + STATE(2403), 1, sym_comment, - ACTIONS(4194), 1, - sym_identifier, - ACTIONS(4196), 1, - sym_private_property_identifier, - [86496] = 2, - ACTIONS(1203), 1, + [97841] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1555), 1, + sym_statement_block, + STATE(2404), 1, sym_comment, - ACTIONS(1605), 2, + [97857] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2405), 1, + sym_comment, + ACTIONS(1741), 2, anon_sym_else, anon_sym_while, - [86504] = 2, - ACTIONS(3), 1, + [97871] = 5, + 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, sym_comment, - ACTIONS(4198), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [86512] = 3, - ACTIONS(1203), 1, + [97887] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1544), 1, + sym_statement_block, + STATE(2407), 1, sym_comment, - ACTIONS(3597), 1, + [97903] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(1078), 1, - sym_class_body, - [86522] = 3, - ACTIONS(1203), 1, + STATE(1541), 1, + sym_statement_block, + STATE(2408), 1, + sym_comment, + [97919] = 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, + sym_comment, + [97935] = 5, + 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, sym_comment, - ACTIONS(4012), 1, + [97951] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(73), 1, + STATE(79), 1, sym_parenthesized_expression, - [86532] = 3, - ACTIONS(1203), 1, + STATE(2411), 1, + sym_comment, + [97967] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1550), 1, + sym_statement_block, + STATE(2412), 1, + sym_comment, + [97983] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1545), 1, + sym_statement_block, + STATE(2413), 1, sym_comment, - ACTIONS(4200), 1, + [97999] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2414), 1, + sym_comment, + ACTIONS(4139), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98013] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(440), 1, + STATE(1539), 1, sym_statement_block, - [86542] = 3, - ACTIONS(1203), 1, + STATE(2415), 1, sym_comment, - ACTIONS(4012), 1, + [98029] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(74), 1, - sym_parenthesized_expression, - [86552] = 3, - ACTIONS(1203), 1, + STATE(2416), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2471), 1, + STATE(2497), 1, sym_formal_parameters, - [86562] = 3, - ACTIONS(1203), 1, + [98045] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2417), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(3114), 2, + anon_sym_in, + anon_sym_of, + [98059] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2472), 1, - sym_formal_parameters, - [86572] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4202), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [86580] = 3, - ACTIONS(1203), 1, + STATE(2418), 1, sym_comment, - ACTIONS(4070), 1, + STATE(2501), 1, + sym_formal_parameters, + [98075] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4023), 1, anon_sym_LBRACE, - STATE(1080), 1, + STATE(1106), 1, sym_statement_block, - [86590] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4204), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [86598] = 3, - ACTIONS(1203), 1, + STATE(2419), 1, sym_comment, - ACTIONS(4156), 1, + [98091] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4023), 1, anon_sym_LBRACE, - STATE(197), 1, + STATE(1107), 1, sym_statement_block, - [86608] = 2, - ACTIONS(1203), 1, + STATE(2420), 1, sym_comment, - ACTIONS(1605), 2, - anon_sym_else, - anon_sym_while, - [86616] = 2, - ACTIONS(1203), 1, + [98107] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2421), 1, sym_comment, - ACTIONS(4206), 2, + ACTIONS(2261), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86624] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, + [98121] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2479), 1, + STATE(2422), 1, + sym_comment, + STATE(2496), 1, sym_formal_parameters, - [86634] = 3, - ACTIONS(1203), 1, + [98137] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2423), 1, sym_comment, - ACTIONS(4022), 1, + STATE(2492), 1, + sym_formal_parameters, + [98153] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3409), 1, anon_sym_LBRACE, - STATE(1237), 1, - sym_statement_block, - [86644] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1605), 2, - anon_sym_else, - anon_sym_while, - [86652] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4208), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [86660] = 3, - ACTIONS(1203), 1, + STATE(1108), 1, + sym_class_body, + STATE(2424), 1, sym_comment, - ACTIONS(4022), 1, - anon_sym_LBRACE, - STATE(1277), 1, - sym_statement_block, - [86670] = 3, - ACTIONS(1203), 1, + [98169] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2425), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(211), 1, - sym_statement_block, - [86680] = 2, - ACTIONS(1203), 1, + STATE(2491), 1, + sym_formal_parameters, + [98185] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2426), 1, sym_comment, - ACTIONS(1601), 2, - anon_sym_else, - anon_sym_while, - [86688] = 2, - ACTIONS(1203), 1, + STATE(2487), 1, + sym_formal_parameters, + [98201] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2427), 1, sym_comment, - ACTIONS(2224), 2, + ACTIONS(2271), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4210), 1, - sym_identifier, - ACTIONS(4212), 1, - anon_sym_STAR, - [86706] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, + [98215] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2317), 1, + STATE(2428), 1, + sym_comment, + STATE(2486), 1, sym_formal_parameters, - [86716] = 3, - ACTIONS(1203), 1, + [98231] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2429), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2545), 1, - sym_statement_block, - [86726] = 2, - ACTIONS(1203), 1, + ACTIONS(2273), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98245] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2430), 1, sym_comment, - ACTIONS(1605), 2, - anon_sym_else, - anon_sym_while, - [86734] = 2, - ACTIONS(1203), 1, + ACTIONS(4141), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [98259] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2431), 1, sym_comment, - ACTIONS(4214), 2, + ACTIONS(4143), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86742] = 3, - ACTIONS(1203), 1, + [98273] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2432), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(4145), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98287] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4005), 1, anon_sym_LBRACE, - STATE(200), 1, - sym_class_body, - [86752] = 2, - ACTIONS(1203), 1, + STATE(216), 1, + sym_statement_block, + STATE(2433), 1, sym_comment, - ACTIONS(3965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [86760] = 3, - ACTIONS(1203), 1, + [98303] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym_statement_block, + STATE(2434), 1, sym_comment, - ACTIONS(4216), 1, + [98319] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4147), 1, anon_sym_LBRACE, - STATE(554), 1, + STATE(630), 1, sym_switch_body, - [86770] = 3, - ACTIONS(1203), 1, + STATE(2435), 1, sym_comment, - ACTIONS(4042), 1, + [98335] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4009), 1, anon_sym_LPAREN, - STATE(75), 1, + STATE(81), 1, sym__for_header, - [86780] = 2, - ACTIONS(1203), 1, + STATE(2436), 1, sym_comment, - ACTIONS(4218), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [86788] = 3, - ACTIONS(1203), 1, + [98351] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4051), 1, + anon_sym_LBRACE, + STATE(847), 1, + sym_statement_block, + STATE(2437), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2480), 1, - sym_formal_parameters, - [86798] = 2, - ACTIONS(1203), 1, + [98367] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2438), 1, sym_comment, - ACTIONS(1605), 2, - anon_sym_else, - anon_sym_while, - [86806] = 3, - ACTIONS(1203), 1, + 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, sym_comment, - ACTIONS(4012), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_parenthesized_expression, - [86816] = 2, - ACTIONS(1203), 1, + ACTIONS(4151), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [98395] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2440), 1, sym_comment, - ACTIONS(4220), 2, + ACTIONS(4153), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86824] = 2, - ACTIONS(1203), 1, + [98409] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2441), 1, sym_comment, - ACTIONS(4222), 2, + ACTIONS(4155), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86832] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2463), 1, - sym_formal_parameters, - [86842] = 2, - ACTIONS(1203), 1, + [98423] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2442), 1, sym_comment, - ACTIONS(2253), 2, + ACTIONS(4157), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86850] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4180), 1, + [98437] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(776), 1, + STATE(2443), 1, + sym_comment, + STATE(2506), 1, sym_statement_block, - [86860] = 2, - ACTIONS(1203), 1, + [98453] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2444), 1, sym_comment, - ACTIONS(2285), 2, + ACTIONS(2275), 2, sym__automatic_semicolon, anon_sym_SEMI, - [86868] = 3, - ACTIONS(1203), 1, + [98467] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2445), 1, + sym_comment, + ACTIONS(3933), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [98481] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2446), 1, sym_comment, - ACTIONS(4180), 1, + ACTIONS(2277), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98495] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(777), 1, - sym_statement_block, - [86878] = 3, - ACTIONS(1203), 1, + STATE(2447), 1, sym_comment, - ACTIONS(3513), 1, + STATE(2507), 1, + sym_statement_block, + [98511] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(778), 1, - sym_class_body, - [86888] = 3, - ACTIONS(1203), 1, + STATE(2448), 1, sym_comment, - ACTIONS(3191), 1, + STATE(2510), 1, + sym_statement_block, + [98527] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2462), 1, - sym_formal_parameters, - [86898] = 3, - ACTIONS(1203), 1, + STATE(2449), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2458), 1, + STATE(2482), 1, sym_formal_parameters, - [86908] = 3, - ACTIONS(1203), 1, + [98543] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2450), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2457), 1, - sym_formal_parameters, - [86918] = 2, - ACTIONS(1203), 1, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [98557] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2451), 1, sym_comment, - ACTIONS(2352), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [86926] = 2, - ACTIONS(1203), 1, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [98571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2452), 1, + sym_comment, + STATE(2511), 1, + sym_statement_block, + [98587] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2453), 1, sym_comment, - ACTIONS(4224), 2, + ACTIONS(3933), 2, anon_sym_COMMA, anon_sym_RBRACE, - [86934] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2453), 1, - sym_formal_parameters, - [86944] = 3, - ACTIONS(1203), 1, + [98601] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2454), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(4159), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [98615] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2481), 1, - sym_statement_block, - [86954] = 3, - ACTIONS(1203), 1, + STATE(2455), 1, sym_comment, - ACTIONS(4226), 1, + STATE(2512), 1, + sym_statement_block, + [98631] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4161), 1, anon_sym_SEMI, - ACTIONS(4228), 1, + ACTIONS(4163), 1, sym__automatic_semicolon, - [86964] = 3, - ACTIONS(1203), 1, + STATE(2456), 1, sym_comment, - ACTIONS(3191), 1, + [98647] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2482), 1, - sym_formal_parameters, - [86974] = 3, - ACTIONS(1203), 1, + STATE(2457), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2484), 1, + STATE(2513), 1, sym_formal_parameters, - [86984] = 3, - ACTIONS(1203), 1, + [98663] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, + anon_sym_LPAREN, + STATE(2458), 1, sym_comment, - ACTIONS(4230), 1, + STATE(2514), 1, + sym_formal_parameters, + [98679] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4165), 1, anon_sym_SEMI, - ACTIONS(4232), 1, + ACTIONS(4167), 1, sym__automatic_semicolon, - [86994] = 3, - ACTIONS(1203), 1, + STATE(2459), 1, sym_comment, - ACTIONS(4234), 1, + [98695] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4169), 1, anon_sym_SEMI, - ACTIONS(4236), 1, + ACTIONS(4171), 1, sym__automatic_semicolon, - [87004] = 3, - ACTIONS(1203), 1, + STATE(2460), 1, sym_comment, - ACTIONS(4238), 1, + [98711] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4173), 1, anon_sym_SEMI, - ACTIONS(4240), 1, + ACTIONS(4175), 1, sym__automatic_semicolon, - [87014] = 3, - ACTIONS(1203), 1, + STATE(2461), 1, sym_comment, - ACTIONS(3191), 1, + [98727] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2485), 1, - sym_formal_parameters, - [87024] = 3, - ACTIONS(1203), 1, + STATE(2462), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2486), 1, + STATE(2515), 1, sym_formal_parameters, - [87034] = 3, - ACTIONS(1203), 1, + [98743] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2463), 1, sym_comment, - ACTIONS(3729), 1, + STATE(2516), 1, + sym_statement_block, + [98759] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2487), 1, + STATE(2464), 1, + sym_comment, + STATE(2517), 1, sym_statement_block, - [87044] = 3, - ACTIONS(1203), 1, + [98775] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2465), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2488), 1, - sym_formal_parameters, - [87054] = 3, - ACTIONS(1203), 1, + STATE(2519), 1, + sym_statement_block, + [98791] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2466), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2493), 1, - sym_formal_parameters, - [87064] = 3, - ACTIONS(1203), 1, + ACTIONS(3933), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [98805] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2467), 1, sym_comment, - ACTIONS(3191), 1, + STATE(2520), 1, + sym_statement_block, + [98821] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2496), 1, - sym_formal_parameters, - [87074] = 3, - ACTIONS(1203), 1, + STATE(2468), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2497), 1, + STATE(2521), 1, sym_formal_parameters, - [87084] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4242), 1, + [98837] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4177), 1, anon_sym_LPAREN, - STATE(649), 1, + STATE(587), 1, sym_parenthesized_expression, - [87094] = 3, - ACTIONS(1203), 1, + STATE(2469), 1, sym_comment, - ACTIONS(3729), 1, + [98853] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, anon_sym_LBRACE, - STATE(2500), 1, + STATE(1356), 1, sym_statement_block, - [87104] = 3, - ACTIONS(1203), 1, + STATE(2470), 1, sym_comment, - ACTIONS(4244), 1, + [98869] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4179), 1, anon_sym_LBRACE, - STATE(648), 1, + STATE(603), 1, sym_statement_block, - [87114] = 3, - ACTIONS(1203), 1, + STATE(2471), 1, sym_comment, - ACTIONS(3191), 1, + [98885] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2501), 1, - sym_formal_parameters, - [87124] = 3, - ACTIONS(1203), 1, + STATE(2472), 1, sym_comment, - ACTIONS(3670), 1, + STATE(2522), 1, + sym_formal_parameters, + [98901] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3536), 1, anon_sym_LBRACE, - STATE(153), 1, + STATE(150), 1, sym_class_body, - [87134] = 3, - ACTIONS(1203), 1, + STATE(2473), 1, sym_comment, - ACTIONS(4000), 1, + [98917] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4181), 1, anon_sym_LBRACE, - STATE(154), 1, + STATE(151), 1, sym_statement_block, - [87144] = 3, - ACTIONS(1203), 1, + STATE(2474), 1, sym_comment, - ACTIONS(3191), 1, + [98933] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2506), 1, - sym_formal_parameters, - [87154] = 3, - ACTIONS(1203), 1, + STATE(2475), 1, sym_comment, - ACTIONS(3569), 1, + STATE(2524), 1, + sym_formal_parameters, + [98949] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3566), 1, anon_sym_LBRACE, - STATE(1275), 1, + STATE(1363), 1, sym_class_body, - [87164] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2609), 1, - sym_formal_parameters, - [87174] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2396), 1, - sym_formal_parameters, - [87184] = 3, - ACTIONS(1203), 1, + STATE(2476), 1, sym_comment, - ACTIONS(3729), 1, + [98965] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, anon_sym_LBRACE, - STATE(2508), 1, + STATE(1367), 1, sym_statement_block, - [87194] = 3, - ACTIONS(1203), 1, + STATE(2477), 1, sym_comment, - ACTIONS(3729), 1, + [98981] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2509), 1, + STATE(2478), 1, + sym_comment, + STATE(2525), 1, sym_statement_block, - [87204] = 3, - ACTIONS(1203), 1, + [98997] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2479), 1, sym_comment, - ACTIONS(3678), 1, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [99011] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(481), 1, + STATE(2480), 1, + sym_comment, + STATE(2526), 1, + sym_statement_block, + [99027] = 5, + 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, - [87214] = 3, - ACTIONS(1203), 1, + STATE(2481), 1, sym_comment, - ACTIONS(4246), 1, + [99043] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4183), 1, anon_sym_LBRACE, - STATE(482), 1, + STATE(503), 1, sym_statement_block, - [87224] = 3, - ACTIONS(1203), 1, + STATE(2482), 1, sym_comment, - ACTIONS(3729), 1, + [99059] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2511), 1, + STATE(2483), 1, + sym_comment, + STATE(2527), 1, sym_statement_block, - [87234] = 2, - ACTIONS(1203), 1, + [99075] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2484), 1, sym_comment, - ACTIONS(4248), 2, + ACTIONS(3933), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87242] = 2, - ACTIONS(1203), 1, + [99089] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2485), 1, sym_comment, - ACTIONS(4250), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [87250] = 3, - ACTIONS(1203), 1, + ACTIONS(4185), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [99103] = 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, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2124), 1, - sym_formal_parameters, - [87260] = 3, - ACTIONS(1203), 1, + [99119] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4181), 1, + anon_sym_LBRACE, + STATE(163), 1, + sym_statement_block, + STATE(2487), 1, sym_comment, - ACTIONS(4000), 1, + [99135] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4001), 1, anon_sym_LBRACE, - STATE(161), 1, + STATE(1366), 1, sym_statement_block, - [87270] = 2, - ACTIONS(1203), 1, + STATE(2488), 1, sym_comment, - ACTIONS(1603), 2, - anon_sym_else, - anon_sym_while, - [87278] = 2, - ACTIONS(1203), 1, + [99151] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2489), 1, sym_comment, - ACTIONS(3978), 2, + ACTIONS(3933), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87286] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3670), 1, + [99165] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3536), 1, anon_sym_LBRACE, STATE(162), 1, sym_class_body, - [87296] = 3, - ACTIONS(1203), 1, + STATE(2490), 1, sym_comment, - ACTIONS(4246), 1, + [99181] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4183), 1, anon_sym_LBRACE, - STATE(488), 1, + STATE(491), 1, sym_statement_block, - [87306] = 3, - ACTIONS(1203), 1, + STATE(2491), 1, sym_comment, - ACTIONS(4246), 1, + [99197] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4183), 1, anon_sym_LBRACE, - STATE(489), 1, + STATE(490), 1, sym_statement_block, - [87316] = 3, - ACTIONS(1203), 1, + STATE(2492), 1, sym_comment, - ACTIONS(3678), 1, + [99213] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(491), 1, + STATE(489), 1, sym_class_body, - [87326] = 3, - ACTIONS(1203), 1, + STATE(2493), 1, sym_comment, - ACTIONS(3191), 1, + [99229] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2448), 1, + STATE(2474), 1, sym_formal_parameters, - [87336] = 2, - ACTIONS(1203), 1, + STATE(2494), 1, + sym_comment, + [99245] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2495), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1711), 2, anon_sym_else, anon_sym_while, - [87344] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4000), 1, + [99259] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4181), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(161), 1, sym_statement_block, - [87354] = 3, - ACTIONS(1203), 1, + STATE(2496), 1, sym_comment, - ACTIONS(4246), 1, + [99275] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4183), 1, anon_sym_LBRACE, - STATE(494), 1, + STATE(500), 1, sym_statement_block, - [87364] = 3, - ACTIONS(1203), 1, + STATE(2497), 1, sym_comment, - ACTIONS(3967), 1, + [99291] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3726), 1, anon_sym_LBRACE, - STATE(495), 1, + STATE(483), 1, sym_statement_block, - [87374] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1637), 2, - anon_sym_else, - anon_sym_while, - [87382] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(1639), 2, - anon_sym_else, - anon_sym_while, - [87390] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2440), 1, - sym_formal_parameters, - [87400] = 2, - ACTIONS(1203), 1, + STATE(2498), 1, sym_comment, - ACTIONS(2277), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [87408] = 2, - ACTIONS(1203), 1, + [99307] = 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, sym_comment, - ACTIONS(3165), 2, + [99323] = 5, + 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, - [87416] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2515), 1, - sym_formal_parameters, - [87426] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4070), 1, - anon_sym_LBRACE, - STATE(1084), 1, - sym_statement_block, - [87436] = 3, - ACTIONS(1203), 1, + STATE(2500), 1, sym_comment, - ACTIONS(4070), 1, + [99339] = 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, - [87446] = 2, - ACTIONS(1203), 1, + STATE(2501), 1, sym_comment, - ACTIONS(4252), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [87454] = 3, - ACTIONS(1203), 1, + [99355] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2502), 1, sym_comment, - ACTIONS(3515), 1, + ACTIONS(2283), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [99369] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2427), 1, + STATE(2459), 1, sym__from_clause, - [87464] = 3, - ACTIONS(1203), 1, + STATE(2503), 1, sym_comment, - ACTIONS(3597), 1, + [99385] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3640), 1, anon_sym_LBRACE, - STATE(1086), 1, - sym_class_body, - [87474] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - STATE(2425), 1, - sym__from_clause, - [87484] = 2, - ACTIONS(1203), 1, + STATE(874), 1, + sym_statement_block, + STATE(2504), 1, sym_comment, - ACTIONS(4254), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [87492] = 2, - ACTIONS(1203), 1, + [99401] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2505), 1, sym_comment, - ACTIONS(4256), 2, + ACTIONS(4187), 2, sym__automatic_semicolon, anon_sym_SEMI, - [87500] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_statement_block, - [87510] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4180), 1, - anon_sym_LBRACE, - STATE(827), 1, - sym_statement_block, - [87520] = 2, - ACTIONS(1203), 1, + [99415] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2506), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4189), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87528] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2520), 1, - sym_statement_block, - [87538] = 2, - ACTIONS(1203), 1, + [99429] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2507), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87546] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3729), 1, + [99443] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3588), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_statement_block, - [87556] = 3, - ACTIONS(1203), 1, + STATE(2040), 1, + sym_class_body, + STATE(2508), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2522), 1, - sym_statement_block, - [87566] = 3, - ACTIONS(1203), 1, + [99459] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2509), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2523), 1, - sym_statement_block, - [87576] = 2, - ACTIONS(1203), 1, + ACTIONS(1711), 2, + anon_sym_else, + anon_sym_while, + [99473] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2510), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87584] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2528), 1, - sym_statement_block, - [87594] = 2, - ACTIONS(1203), 1, + [99487] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2511), 1, sym_comment, - ACTIONS(1701), 2, - anon_sym_else, - anon_sym_while, - [87602] = 3, - ACTIONS(1203), 1, + ACTIONS(4191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99501] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2512), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2530), 1, - sym_formal_parameters, - [87612] = 3, - ACTIONS(1203), 1, + ACTIONS(4191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2513), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, STATE(2531), 1, - sym_formal_parameters, - [87622] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2532), 1, - sym_formal_parameters, - [87632] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3729), 1, + sym_statement_block, + [99531] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, - STATE(2533), 1, + STATE(2430), 1, sym_statement_block, - [87642] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2259), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [87650] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2263), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [87658] = 3, - ACTIONS(1203), 1, + STATE(2514), 1, sym_comment, - ACTIONS(3729), 1, + [99547] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, + STATE(2515), 1, + sym_comment, STATE(2534), 1, sym_statement_block, - [87668] = 3, - ACTIONS(1203), 1, + [99563] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2516), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2536), 1, - sym_statement_block, - [87678] = 2, - ACTIONS(1203), 1, + ACTIONS(4191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99577] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2517), 1, + sym_comment, + ACTIONS(4191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99591] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4193), 1, + sym_identifier, + ACTIONS(4195), 1, + sym_private_property_identifier, + STATE(2518), 1, sym_comment, - ACTIONS(4262), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [87686] = 2, - ACTIONS(1203), 1, + [99607] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2519), 1, sym_comment, - ACTIONS(4264), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [87694] = 2, - ACTIONS(1203), 1, + ACTIONS(4191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99621] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2520), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87702] = 3, - ACTIONS(1203), 1, + [99635] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2521), 1, sym_comment, - ACTIONS(3729), 1, + STATE(2535), 1, + sym_statement_block, + [99651] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, anon_sym_LBRACE, + STATE(2522), 1, + sym_comment, STATE(2537), 1, sym_statement_block, - [87712] = 2, - ACTIONS(1203), 1, + [99667] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2523), 1, sym_comment, - ACTIONS(1695), 2, + ACTIONS(1709), 2, anon_sym_else, anon_sym_while, - [87720] = 3, - ACTIONS(1203), 1, + [99681] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3660), 1, + anon_sym_LBRACE, + STATE(2524), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, STATE(2538), 1, - sym_formal_parameters, - [87730] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2539), 1, - sym_formal_parameters, - [87740] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2542), 1, - sym_formal_parameters, - [87750] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2543), 1, sym_statement_block, - [87760] = 2, - ACTIONS(1203), 1, + [99697] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2525), 1, sym_comment, - ACTIONS(4266), 2, + ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87768] = 2, - ACTIONS(1203), 1, + [99711] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2526), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87776] = 2, - ACTIONS(1203), 1, + [99725] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2527), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87784] = 2, - ACTIONS(1203), 1, + [99739] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2528), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(4197), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [99753] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2529), 1, + sym_comment, + ACTIONS(1707), 2, anon_sym_else, anon_sym_while, - [87792] = 2, - ACTIONS(1203), 1, + [99767] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3973), 1, + anon_sym_LPAREN, + STATE(2435), 1, + sym_parenthesized_expression, + STATE(2530), 1, + sym_comment, + [99783] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2531), 1, sym_comment, - ACTIONS(4260), 2, + ACTIONS(4141), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87800] = 2, - ACTIONS(1203), 1, + [99797] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2532), 1, sym_comment, - ACTIONS(1691), 2, + ACTIONS(1661), 2, anon_sym_else, anon_sym_while, - [87808] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4044), 1, + [99811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4009), 1, anon_sym_LPAREN, - STATE(2401), 1, - sym_parenthesized_expression, - [87818] = 3, - ACTIONS(1203), 1, + STATE(114), 1, + sym__for_header, + STATE(2533), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_in, - ACTIONS(3418), 1, - anon_sym_of, - [87828] = 3, - ACTIONS(1203), 1, + [99827] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2534), 1, sym_comment, - ACTIONS(4070), 1, - anon_sym_LBRACE, - STATE(1091), 1, - sym_statement_block, - [87838] = 3, - ACTIONS(1203), 1, + ACTIONS(4141), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99841] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2535), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(4141), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99855] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4199), 1, anon_sym_LBRACE, - STATE(854), 1, - sym_statement_block, - [87848] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4268), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [87856] = 3, - ACTIONS(1203), 1, + STATE(889), 1, + sym_switch_body, + STATE(2536), 1, sym_comment, - ACTIONS(4042), 1, - anon_sym_LPAREN, - STATE(94), 1, - sym__for_header, - [87866] = 3, - ACTIONS(1203), 1, + [99871] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2537), 1, sym_comment, - ACTIONS(4270), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_switch_body, - [87876] = 2, - ACTIONS(1203), 1, + ACTIONS(4141), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [99885] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2538), 1, sym_comment, - ACTIONS(4272), 2, + ACTIONS(4141), 2, anon_sym_COMMA, anon_sym_RBRACE, - [87884] = 2, - ACTIONS(1203), 1, + [99899] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2539), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1651), 2, anon_sym_else, anon_sym_while, - [87892] = 2, - ACTIONS(1203), 1, + [99913] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2540), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [87900] = 2, - ACTIONS(1203), 1, + ACTIONS(1649), 2, + anon_sym_else, + anon_sym_while, + [99927] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2541), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [87908] = 2, - ACTIONS(1203), 1, + ACTIONS(4201), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [99941] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1569), 1, + sym_statement_block, + STATE(2542), 1, + sym_comment, + [99957] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2543), 1, + sym_comment, + ACTIONS(1647), 2, + anon_sym_else, + anon_sym_while, + [99971] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2544), 1, + sym_comment, + ACTIONS(1653), 2, + anon_sym_else, + anon_sym_while, + [99985] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2545), 1, sym_comment, - ACTIONS(4274), 2, + ACTIONS(4203), 2, sym__automatic_semicolon, anon_sym_SEMI, - [87916] = 2, - ACTIONS(1203), 1, + [99999] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2546), 1, sym_comment, - ACTIONS(1687), 2, + ACTIONS(1705), 2, anon_sym_else, anon_sym_while, - [87924] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3515), 1, + [100013] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2125), 1, + STATE(2171), 1, sym__from_clause, - [87934] = 3, - ACTIONS(1203), 1, + STATE(2547), 1, sym_comment, - ACTIONS(4276), 1, + [100029] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4205), 1, anon_sym_COMMA, - ACTIONS(4278), 1, + ACTIONS(4207), 1, anon_sym_from, - [87944] = 2, - ACTIONS(1203), 1, + STATE(2548), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [87952] = 2, - ACTIONS(1203), 1, + [100045] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2549), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1655), 2, anon_sym_else, anon_sym_while, - [87960] = 3, - ACTIONS(1203), 1, + [100059] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2550), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, + ACTIONS(1703), 2, + anon_sym_else, + anon_sym_while, + [100073] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, STATE(2551), 1, - sym_statement_block, - [87970] = 3, - ACTIONS(1203), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(1657), 2, + anon_sym_else, + anon_sym_while, + [100087] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(2553), 1, + STATE(1570), 1, sym_statement_block, - [87980] = 3, - ACTIONS(1203), 1, + STATE(2552), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, + [100103] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2553), 1, + sym_comment, + ACTIONS(1659), 2, + anon_sym_else, + anon_sym_while, + [100117] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, STATE(2554), 1, + sym_comment, + ACTIONS(2468), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [100131] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, + anon_sym_LBRACE, + STATE(1576), 1, sym_statement_block, - [87990] = 2, - ACTIONS(1203), 1, + STATE(2555), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [87998] = 2, - ACTIONS(1203), 1, + [100147] = 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, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88006] = 2, - ACTIONS(1203), 1, + [100163] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2557), 1, sym_comment, - ACTIONS(1689), 2, + ACTIONS(1701), 2, anon_sym_else, anon_sym_while, - [88014] = 2, - ACTIONS(1203), 1, + [100177] = 5, + 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, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88022] = 2, - ACTIONS(1203), 1, + [100193] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2559), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88030] = 3, - ACTIONS(1203), 1, + ACTIONS(1697), 2, + anon_sym_else, + anon_sym_while, + [100207] = 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, sym_comment, - ACTIONS(3729), 1, + [100223] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3963), 1, anon_sym_LBRACE, - STATE(2555), 1, + STATE(1538), 1, sym_statement_block, - [88040] = 3, - ACTIONS(1203), 1, + STATE(2561), 1, + sym_comment, + [100239] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2562), 1, + sym_comment, + ACTIONS(1663), 2, + anon_sym_else, + anon_sym_while, + [100253] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2563), 1, + sym_comment, + ACTIONS(1665), 2, + anon_sym_else, + anon_sym_while, + [100267] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2564), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_else, + anon_sym_while, + [100281] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2565), 1, + sym_comment, + ACTIONS(1671), 2, + anon_sym_else, + anon_sym_while, + [100295] = 5, + 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, + sym_comment, + [100327] = 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, + sym_comment, + [100343] = 5, + 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, sym_comment, - ACTIONS(3729), 1, + [100359] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2570), 1, + sym_comment, + ACTIONS(1673), 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(2556), 1, + STATE(2015), 1, + sym_class_body, + STATE(2571), 1, + sym_comment, + [100389] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2572), 1, + sym_comment, + ACTIONS(1675), 2, + anon_sym_else, + anon_sym_while, + [100403] = 5, + 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, - [88050] = 3, - ACTIONS(1203), 1, + STATE(2573), 1, sym_comment, - ACTIONS(4012), 1, + [100419] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(111), 1, + STATE(105), 1, sym_parenthesized_expression, - [88060] = 3, - ACTIONS(1203), 1, + STATE(2574), 1, sym_comment, - ACTIONS(4044), 1, + [100435] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3973), 1, anon_sym_LPAREN, - STATE(2290), 1, + STATE(2199), 1, sym_parenthesized_expression, - [88070] = 3, - ACTIONS(1203), 1, + STATE(2575), 1, sym_comment, - ACTIONS(3729), 1, + [100451] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4077), 1, anon_sym_LBRACE, - STATE(2557), 1, + STATE(2009), 1, sym_statement_block, - [88080] = 2, - ACTIONS(1203), 1, + STATE(2576), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88088] = 2, - ACTIONS(1203), 1, + [100467] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2577), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88096] = 2, - ACTIONS(1203), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100481] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2578), 1, sym_comment, - ACTIONS(4266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88104] = 3, - ACTIONS(1203), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100495] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2579), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100509] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2369), 1, + STATE(2397), 1, sym_formal_parameters, - [88114] = 3, - ACTIONS(1203), 1, + STATE(2580), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2368), 1, - sym_formal_parameters, - [88124] = 3, - ACTIONS(1203), 1, + [100525] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2581), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2364), 1, - sym_formal_parameters, - [88134] = 3, - ACTIONS(1203), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100539] = 5, + 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, sym_comment, - ACTIONS(3191), 1, + [100555] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2363), 1, + STATE(2396), 1, sym_formal_parameters, - [88144] = 3, - ACTIONS(1203), 1, + STATE(2583), 1, sym_comment, - ACTIONS(3515), 1, + [100571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2261), 1, + STATE(2161), 1, sym__from_clause, - [88154] = 2, - ACTIONS(1203), 1, + STATE(2584), 1, sym_comment, - ACTIONS(4280), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88162] = 3, - ACTIONS(1203), 1, + [100587] = 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, sym_comment, - ACTIONS(3515), 1, + [100603] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2245), 1, + STATE(2179), 1, sym__from_clause, - [88172] = 2, - ACTIONS(1203), 1, + STATE(2586), 1, sym_comment, - ACTIONS(4280), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88180] = 2, - ACTIONS(1203), 1, + [100619] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3302), 1, + sym_identifier, + ACTIONS(3308), 1, + sym_private_property_identifier, + STATE(2587), 1, sym_comment, - ACTIONS(4280), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88188] = 2, - ACTIONS(1203), 1, + [100635] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2588), 1, sym_comment, - ACTIONS(4280), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88196] = 2, - ACTIONS(1203), 1, + ACTIONS(2289), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [100649] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2589), 1, sym_comment, - ACTIONS(4280), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88204] = 2, - ACTIONS(1203), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100663] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2590), 1, sym_comment, - ACTIONS(4280), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [88212] = 3, - ACTIONS(1203), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100677] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2591), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100691] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2359), 1, + STATE(2391), 1, sym_formal_parameters, - [88222] = 3, - ACTIONS(1203), 1, + STATE(2592), 1, sym_comment, - ACTIONS(3191), 1, + [100707] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2229), 1, + STATE(2227), 1, sym_formal_parameters, - [88232] = 2, - ACTIONS(1203), 1, + STATE(2593), 1, sym_comment, - ACTIONS(1699), 2, - anon_sym_else, - anon_sym_while, - [88240] = 3, - ACTIONS(1203), 1, + [100723] = 5, + 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, sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - STATE(2257), 1, - sym__from_clause, - [88250] = 2, - ACTIONS(1203), 1, + [100739] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2595), 1, sym_comment, - ACTIONS(1705), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88258] = 2, - ACTIONS(1203), 1, + [100753] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2596), 1, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88266] = 3, - ACTIONS(1203), 1, + [100767] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2597), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2215), 1, - sym_formal_parameters, - [88276] = 3, - ACTIONS(1203), 1, + STATE(2598), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2358), 1, + STATE(2669), 1, sym_formal_parameters, - [88286] = 3, - ACTIONS(3), 1, + [100797] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2599), 1, sym_comment, - ACTIONS(4282), 1, - sym_identifier, - ACTIONS(4284), 1, - anon_sym_STAR, - [88296] = 3, - ACTIONS(1203), 1, + ACTIONS(1701), 2, + anon_sym_else, + anon_sym_while, + [100811] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2600), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100825] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2214), 1, + STATE(2601), 1, + sym_comment, + STATE(2677), 1, sym_formal_parameters, - [88306] = 2, - ACTIONS(1203), 1, + [100841] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2602), 1, sym_comment, - ACTIONS(1673), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88314] = 2, - ACTIONS(1203), 1, + [100855] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2603), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88322] = 2, - ACTIONS(1203), 1, + [100869] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2604), 1, sym_comment, - ACTIONS(1669), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88330] = 2, - ACTIONS(1203), 1, + [100883] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2605), 1, sym_comment, - ACTIONS(1665), 2, + ACTIONS(1697), 2, anon_sym_else, anon_sym_while, - [88338] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, + [100897] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2211), 1, - sym_formal_parameters, - [88348] = 3, - ACTIONS(1203), 1, + STATE(2606), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2658), 1, sym_formal_parameters, - [88358] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, + [100913] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2205), 1, - sym_formal_parameters, - [88368] = 3, - ACTIONS(1203), 1, + STATE(2607), 1, sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2354), 1, + STATE(2618), 1, sym_formal_parameters, - [88378] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, + [100929] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2201), 1, + STATE(2608), 1, + sym_comment, + STATE(2612), 1, sym_formal_parameters, - [88388] = 3, - ACTIONS(1203), 1, + [100945] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2609), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [100959] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2199), 1, + STATE(2576), 1, sym_formal_parameters, - [88398] = 3, - ACTIONS(1203), 1, + STATE(2610), 1, sym_comment, - ACTIONS(3191), 1, + [100975] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2193), 1, + STATE(2573), 1, sym_formal_parameters, - [88408] = 3, - ACTIONS(1203), 1, + STATE(2611), 1, + sym_comment, + [100991] = 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, sym_comment, - ACTIONS(3191), 1, + [101007] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2192), 1, + STATE(2560), 1, sym_formal_parameters, - [88418] = 3, - ACTIONS(1203), 1, + STATE(2613), 1, sym_comment, - ACTIONS(3191), 1, + [101023] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2191), 1, + STATE(2558), 1, sym_formal_parameters, - [88428] = 3, - ACTIONS(1203), 1, + STATE(2614), 1, sym_comment, - ACTIONS(3191), 1, + [101039] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2189), 1, + STATE(2434), 1, sym_formal_parameters, - [88438] = 3, - ACTIONS(1203), 1, + STATE(2615), 1, sym_comment, - ACTIONS(3191), 1, + [101055] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2188), 1, + STATE(2552), 1, sym_formal_parameters, - [88448] = 3, - ACTIONS(1203), 1, + STATE(2616), 1, sym_comment, - ACTIONS(3191), 1, + [101071] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2184), 1, + STATE(2542), 1, sym_formal_parameters, - [88458] = 2, - ACTIONS(1203), 1, + STATE(2617), 1, sym_comment, - ACTIONS(1659), 2, - anon_sym_else, - anon_sym_while, - [88466] = 3, - ACTIONS(1203), 1, + [101087] = 5, + 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, sym_comment, - ACTIONS(3191), 1, + [101103] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2180), 1, + STATE(2488), 1, sym_formal_parameters, - [88476] = 3, - ACTIONS(1203), 1, + STATE(2619), 1, sym_comment, - ACTIONS(3191), 1, + [101119] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2178), 1, + STATE(2477), 1, sym_formal_parameters, - [88486] = 3, - ACTIONS(1203), 1, + STATE(2620), 1, sym_comment, - ACTIONS(3191), 1, + [101135] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2173), 1, + STATE(2470), 1, sym_formal_parameters, - [88496] = 3, - ACTIONS(1203), 1, + STATE(2621), 1, sym_comment, - ACTIONS(3191), 1, + [101151] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2172), 1, + STATE(2298), 1, sym_formal_parameters, - [88506] = 3, - ACTIONS(1203), 1, + STATE(2622), 1, sym_comment, - ACTIONS(3191), 1, + [101167] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2167), 1, + STATE(2415), 1, sym_formal_parameters, - [88516] = 3, - ACTIONS(1203), 1, + STATE(2623), 1, sym_comment, - ACTIONS(3191), 1, + [101183] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2165), 1, + STATE(2413), 1, sym_formal_parameters, - [88526] = 3, - ACTIONS(1203), 1, + STATE(2624), 1, sym_comment, - ACTIONS(3191), 1, + [101199] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2164), 1, + STATE(2412), 1, sym_formal_parameters, - [88536] = 3, - ACTIONS(1203), 1, + STATE(2625), 1, sym_comment, - ACTIONS(3191), 1, + [101215] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2159), 1, + STATE(2408), 1, sym_formal_parameters, - [88546] = 3, - ACTIONS(1203), 1, + STATE(2626), 1, sym_comment, - ACTIONS(3191), 1, + [101231] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2158), 1, + STATE(2407), 1, sym_formal_parameters, - [88556] = 3, - ACTIONS(1203), 1, + STATE(2627), 1, sym_comment, - ACTIONS(3191), 1, + [101247] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2157), 1, + STATE(2404), 1, sym_formal_parameters, - [88566] = 3, - ACTIONS(1203), 1, + STATE(2628), 1, sym_comment, - ACTIONS(3191), 1, + [101263] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2156), 1, + STATE(2394), 1, sym_formal_parameters, - [88576] = 3, - ACTIONS(1203), 1, + STATE(2629), 1, sym_comment, - ACTIONS(3191), 1, + [101279] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2155), 1, + STATE(2393), 1, sym_formal_parameters, - [88586] = 3, - ACTIONS(1203), 1, + STATE(2630), 1, sym_comment, - ACTIONS(3191), 1, + [101295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2154), 1, + STATE(2381), 1, sym_formal_parameters, - [88596] = 3, - ACTIONS(1203), 1, + STATE(2631), 1, sym_comment, - ACTIONS(3191), 1, + [101311] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2153), 1, + STATE(2378), 1, sym_formal_parameters, - [88606] = 3, - ACTIONS(1203), 1, + STATE(2632), 1, sym_comment, - ACTIONS(3191), 1, + [101327] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2152), 1, + STATE(2377), 1, sym_formal_parameters, - [88616] = 3, - ACTIONS(1203), 1, + STATE(2633), 1, sym_comment, - ACTIONS(3191), 1, + [101343] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2150), 1, + STATE(2367), 1, sym_formal_parameters, - [88626] = 3, - ACTIONS(1203), 1, + STATE(2634), 1, sym_comment, - ACTIONS(3191), 1, + [101359] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2149), 1, + STATE(2339), 1, sym_formal_parameters, - [88636] = 2, - ACTIONS(1203), 1, + STATE(2635), 1, + sym_comment, + [101375] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2636), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1697), 2, anon_sym_else, anon_sym_while, - [88644] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, + [101389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2147), 1, + STATE(2332), 1, sym_formal_parameters, - [88654] = 3, - ACTIONS(1203), 1, + STATE(2637), 1, sym_comment, - ACTIONS(3191), 1, + [101405] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2146), 1, + STATE(2320), 1, sym_formal_parameters, - [88664] = 3, - ACTIONS(1203), 1, + STATE(2638), 1, sym_comment, - ACTIONS(3191), 1, + [101421] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2145), 1, + STATE(2317), 1, sym_formal_parameters, - [88674] = 3, - ACTIONS(1203), 1, + STATE(2639), 1, sym_comment, - ACTIONS(3191), 1, + [101437] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2144), 1, + STATE(2306), 1, sym_formal_parameters, - [88684] = 3, - ACTIONS(1203), 1, + STATE(2640), 1, sym_comment, - ACTIONS(3191), 1, + [101453] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2142), 1, + STATE(2302), 1, sym_formal_parameters, - [88694] = 3, - ACTIONS(1203), 1, + STATE(2641), 1, sym_comment, - ACTIONS(3191), 1, + [101469] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2141), 1, + STATE(2299), 1, sym_formal_parameters, - [88704] = 3, - ACTIONS(1203), 1, + STATE(2642), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_LBRACE, - STATE(2544), 1, - sym_statement_block, - [88714] = 2, - ACTIONS(1203), 1, + [101485] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2643), 1, + sym_comment, + ACTIONS(1677), 2, + anon_sym_else, + anon_sym_while, + [101499] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2644), 1, sym_comment, - ACTIONS(1615), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88722] = 2, - ACTIONS(1203), 1, + [101513] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2645), 1, sym_comment, - ACTIONS(1613), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88730] = 2, - ACTIONS(1203), 1, + [101527] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2646), 1, sym_comment, - ACTIONS(1611), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88738] = 2, - ACTIONS(1203), 1, + [101541] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2647), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1677), 2, anon_sym_else, anon_sym_while, - [88746] = 2, - ACTIONS(1203), 1, + [101555] = 5, + 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, sym_comment, - ACTIONS(1609), 2, + [101571] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2649), 1, + sym_comment, + ACTIONS(1679), 2, anon_sym_else, anon_sym_while, - [88754] = 2, - ACTIONS(1203), 1, + [101585] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2650), 1, sym_comment, - ACTIONS(1623), 2, + ACTIONS(1667), 2, anon_sym_else, anon_sym_while, - [88762] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4012), 1, + [101599] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(85), 1, + STATE(112), 1, sym_parenthesized_expression, - [88772] = 3, - ACTIONS(1203), 1, + STATE(2651), 1, sym_comment, - ACTIONS(4044), 1, + [101615] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3973), 1, anon_sym_LPAREN, - STATE(2175), 1, + STATE(2205), 1, sym_parenthesized_expression, - [88782] = 2, - ACTIONS(1203), 1, + STATE(2652), 1, sym_comment, - ACTIONS(1625), 2, - anon_sym_else, - anon_sym_while, - [88790] = 2, - ACTIONS(1203), 1, + [101631] = 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, sym_comment, - ACTIONS(1629), 2, - anon_sym_else, - anon_sym_while, - [88798] = 2, - ACTIONS(1203), 1, + [101647] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2654), 1, sym_comment, - ACTIONS(1633), 2, + ACTIONS(1681), 2, anon_sym_else, anon_sym_while, - [88806] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LPAREN, - STATE(2342), 1, - sym_formal_parameters, - [88816] = 2, - ACTIONS(1203), 1, + [101661] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2655), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1683), 2, anon_sym_else, anon_sym_while, - [88824] = 2, - ACTIONS(1203), 1, + [101675] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2656), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1697), 2, anon_sym_else, anon_sym_while, - [88832] = 2, - ACTIONS(1203), 1, + [101689] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2657), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1685), 2, anon_sym_else, anon_sym_while, - [88840] = 3, - ACTIONS(1203), 1, + [101703] = 5, + 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, sym_comment, - ACTIONS(3515), 1, + [101719] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2207), 1, + STATE(2358), 1, sym__from_clause, - [88850] = 3, - ACTIONS(1203), 1, + STATE(2659), 1, sym_comment, - ACTIONS(3515), 1, + [101735] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2209), 1, + STATE(2238), 1, sym__from_clause, - [88860] = 2, - ACTIONS(1203), 1, + STATE(2660), 1, sym_comment, - ACTIONS(2239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [88868] = 3, - ACTIONS(1203), 1, + [101751] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, + anon_sym_from, + STATE(2240), 1, + sym__from_clause, + STATE(2661), 1, + sym_comment, + [101767] = 5, + 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, sym_comment, - ACTIONS(3515), 1, + [101783] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3436), 1, anon_sym_from, - STATE(2325), 1, + STATE(2356), 1, sym__from_clause, - [88878] = 3, - ACTIONS(1203), 1, + STATE(2663), 1, sym_comment, - ACTIONS(3191), 1, + [101799] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2226), 1, + STATE(2257), 1, sym_formal_parameters, - [88888] = 3, - ACTIONS(1203), 1, + STATE(2664), 1, sym_comment, - ACTIONS(3515), 1, - anon_sym_from, - STATE(2323), 1, - sym__from_clause, - [88898] = 2, - ACTIONS(1203), 1, + [101815] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2665), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1687), 2, anon_sym_else, anon_sym_while, - [88906] = 2, - ACTIONS(1203), 1, + [101829] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2666), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1689), 2, anon_sym_else, anon_sym_while, - [88914] = 3, - ACTIONS(1203), 1, + [101843] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2667), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(1693), 2, + anon_sym_else, + anon_sym_while, + [101857] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2239), 1, + STATE(2270), 1, sym_formal_parameters, - [88924] = 2, - ACTIONS(1203), 1, + STATE(2668), 1, sym_comment, - ACTIONS(1635), 2, - anon_sym_else, - anon_sym_while, - [88932] = 2, - ACTIONS(1203), 1, + [101873] = 5, + 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, sym_comment, - ACTIONS(1635), 2, + [101889] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2670), 1, + sym_comment, + ACTIONS(1697), 2, anon_sym_else, anon_sym_while, - [88940] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3191), 1, + [101903] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2243), 1, + STATE(2274), 1, sym_formal_parameters, - [88950] = 3, - ACTIONS(1203), 1, + STATE(2671), 1, sym_comment, - ACTIONS(3191), 1, + [101919] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2244), 1, + STATE(2275), 1, sym_formal_parameters, - [88960] = 3, - ACTIONS(1203), 1, + STATE(2672), 1, sym_comment, - ACTIONS(3191), 1, + [101935] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2248), 1, + STATE(2279), 1, sym_formal_parameters, - [88970] = 3, - ACTIONS(1203), 1, + STATE(2673), 1, sym_comment, - ACTIONS(3191), 1, + [101951] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2249), 1, + STATE(2280), 1, sym_formal_parameters, - [88980] = 3, - ACTIONS(1203), 1, + STATE(2674), 1, sym_comment, - ACTIONS(3191), 1, + [101967] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2253), 1, + STATE(2284), 1, sym_formal_parameters, - [88990] = 3, - ACTIONS(1203), 1, + STATE(2675), 1, sym_comment, - ACTIONS(3191), 1, + [101983] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3164), 1, anon_sym_LPAREN, - STATE(2254), 1, + STATE(2285), 1, sym_formal_parameters, - [89000] = 2, - ACTIONS(1203), 1, + STATE(2676), 1, sym_comment, - ACTIONS(1635), 2, - anon_sym_else, - anon_sym_while, - [89008] = 2, - ACTIONS(1203), 1, + [101999] = 5, + 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, - ACTIONS(1635), 2, - anon_sym_else, - anon_sym_while, - [89016] = 2, - ACTIONS(1203), 1, + [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, + sym_comment, + [102031] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2679), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1695), 2, anon_sym_else, anon_sym_while, - [89024] = 2, - ACTIONS(1203), 1, + [102045] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2680), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1697), 2, anon_sym_else, anon_sym_while, - [89032] = 2, - ACTIONS(1203), 1, + [102059] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + STATE(2681), 1, sym_comment, - ACTIONS(1635), 2, + ACTIONS(1699), 2, anon_sym_else, anon_sym_while, - [89040] = 3, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4012), 1, + [102073] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3935), 1, anon_sym_LPAREN, - STATE(117), 1, + STATE(77), 1, sym_parenthesized_expression, - [89050] = 3, - ACTIONS(1203), 1, + STATE(2682), 1, sym_comment, - ACTIONS(4044), 1, + [102089] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3973), 1, anon_sym_LPAREN, - STATE(2291), 1, + STATE(2323), 1, sym_parenthesized_expression, - [89060] = 2, - ACTIONS(1203), 1, + STATE(2683), 1, sym_comment, - ACTIONS(1635), 2, - anon_sym_else, - anon_sym_while, - [89068] = 2, - ACTIONS(1203), 1, + [102105] = 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, sym_comment, - ACTIONS(1635), 2, - anon_sym_else, - anon_sym_while, - [89076] = 2, - ACTIONS(1203), 1, + [102121] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4221), 1, + anon_sym_from, + STATE(2685), 1, sym_comment, - ACTIONS(4286), 1, - ts_builtin_sym_end, - [89083] = 2, - ACTIONS(3), 1, + [102134] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4207), 1, + anon_sym_from, + STATE(2686), 1, sym_comment, - ACTIONS(4288), 1, + [102147] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4223), 1, sym_regex_pattern, - [89090] = 2, - ACTIONS(1203), 1, + STATE(2687), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_RPAREN, - [89097] = 2, - ACTIONS(3), 1, + [102160] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2226), 1, + anon_sym_in, + STATE(2688), 1, sym_comment, - ACTIONS(4292), 1, - sym_identifier, - [89104] = 2, - ACTIONS(3), 1, + [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, sym_comment, - ACTIONS(4294), 1, + [102186] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4227), 1, sym_identifier, - [89111] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(3923), 1, - anon_sym_EQ, - [89118] = 2, - ACTIONS(1203), 1, + STATE(2690), 1, sym_comment, - ACTIONS(4296), 1, + [102199] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4229), 1, anon_sym_while, - [89125] = 2, - ACTIONS(3), 1, + STATE(2691), 1, sym_comment, - ACTIONS(4298), 1, + [102212] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4231), 1, sym_identifier, - [89132] = 2, - ACTIONS(1203), 1, + STATE(2692), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_while, - [89139] = 2, + [102225] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4302), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4233), 1, sym_regex_pattern, - [89146] = 2, - ACTIONS(1203), 1, + STATE(2693), 1, sym_comment, - ACTIONS(2159), 1, - anon_sym_in, - [89153] = 2, - ACTIONS(1203), 1, + [102238] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4235), 1, + anon_sym_while, + STATE(2694), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_EQ_GT, - [89160] = 2, - ACTIONS(1203), 1, + [102251] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4237), 1, + ts_builtin_sym_end, + STATE(2695), 1, sym_comment, - ACTIONS(4306), 1, + [102264] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4239), 1, anon_sym_RPAREN, - [89167] = 2, - ACTIONS(3), 1, + STATE(2696), 1, sym_comment, - ACTIONS(4308), 1, - sym_identifier, - [89174] = 2, - ACTIONS(3), 1, + [102277] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2394), 1, + anon_sym_RBRACK, + STATE(2697), 1, sym_comment, - ACTIONS(4310), 1, + [102290] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4241), 1, sym_identifier, - [89181] = 2, - ACTIONS(1203), 1, + STATE(2698), 1, sym_comment, - ACTIONS(4312), 1, - anon_sym_function, - [89188] = 2, - ACTIONS(3), 1, + [102303] = 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, - ACTIONS(4314), 1, + [102316] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4243), 1, sym_identifier, - [89195] = 2, - ACTIONS(1203), 1, + STATE(2700), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_while, - [89202] = 2, + [102329] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4245), 1, + sym_regex_pattern, + STATE(2701), 1, sym_comment, - ACTIONS(4318), 1, - sym_identifier, - [89209] = 2, - ACTIONS(1203), 1, + [102342] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4247), 1, + anon_sym_while, + STATE(2702), 1, sym_comment, - ACTIONS(4320), 1, - anon_sym_RPAREN, - [89216] = 2, - ACTIONS(1203), 1, + [102355] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4249), 1, + anon_sym_EQ_GT, + STATE(2703), 1, sym_comment, - ACTIONS(4322), 1, - anon_sym_RPAREN, - [89223] = 2, + [102368] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4251), 1, + sym_identifier, + STATE(2704), 1, sym_comment, - ACTIONS(4324), 1, + [102381] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4253), 1, sym_regex_pattern, - [89230] = 2, - ACTIONS(1203), 1, + STATE(2705), 1, + sym_comment, + [102394] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4255), 1, + sym_identifier, + STATE(2706), 1, + sym_comment, + [102407] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4257), 1, + anon_sym_function, + STATE(2707), 1, sym_comment, - ACTIONS(4326), 1, + [102420] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4259), 1, anon_sym_RPAREN, - [89237] = 2, - ACTIONS(1203), 1, + STATE(2708), 1, sym_comment, - ACTIONS(4328), 1, + [102433] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4261), 1, anon_sym_EQ, - [89244] = 2, - ACTIONS(1203), 1, + STATE(2709), 1, sym_comment, - ACTIONS(4330), 1, + [102446] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4263), 1, anon_sym_as, - [89251] = 2, - ACTIONS(1203), 1, + STATE(2710), 1, sym_comment, - ACTIONS(4278), 1, - anon_sym_from, - [89258] = 2, - ACTIONS(1203), 1, + [102459] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4265), 1, + anon_sym_EQ, + STATE(2711), 1, sym_comment, - ACTIONS(2425), 1, + [102472] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4267), 1, anon_sym_RPAREN, - [89265] = 2, - ACTIONS(1203), 1, + STATE(2712), 1, sym_comment, - ACTIONS(4332), 1, - anon_sym_from, - [89272] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2411), 1, + [102485] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4269), 1, anon_sym_RPAREN, - [89279] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_while, - [89286] = 2, - ACTIONS(1203), 1, + STATE(2713), 1, sym_comment, - ACTIONS(2427), 1, + [102498] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2351), 1, anon_sym_RPAREN, - [89293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 1, - sym_identifier, - [89300] = 2, - ACTIONS(1203), 1, + STATE(2714), 1, sym_comment, - ACTIONS(4338), 1, + [102511] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2384), 1, anon_sym_RPAREN, - [89307] = 2, - ACTIONS(1203), 1, + STATE(2715), 1, sym_comment, - ACTIONS(2354), 1, + [102524] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2343), 1, anon_sym_RPAREN, - [89314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - sym_regex_pattern, - [89321] = 2, - ACTIONS(1203), 1, + STATE(2716), 1, sym_comment, - ACTIONS(4342), 1, - anon_sym_while, - [89328] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2309), 1, - anon_sym_RPAREN, - [89335] = 2, - ACTIONS(1203), 1, + [102537] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4271), 1, + sym_identifier, + STATE(2717), 1, sym_comment, - ACTIONS(2405), 1, + [102550] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2345), 1, anon_sym_RPAREN, - [89342] = 2, - ACTIONS(1203), 1, + STATE(2718), 1, sym_comment, - ACTIONS(2399), 1, + [102563] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2333), 1, anon_sym_RPAREN, - [89349] = 2, - ACTIONS(1203), 1, + STATE(2719), 1, sym_comment, - ACTIONS(2413), 1, + [102576] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2335), 1, anon_sym_RPAREN, - [89356] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2417), 1, - anon_sym_COLON, - [89363] = 2, - ACTIONS(3), 1, + STATE(2720), 1, sym_comment, - ACTIONS(4344), 1, - sym_identifier, - [89370] = 2, - ACTIONS(1203), 1, + [102589] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4273), 1, + anon_sym_while, + STATE(2721), 1, sym_comment, - ACTIONS(4346), 1, + [102602] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4275), 1, anon_sym_from, - [89377] = 2, - ACTIONS(1203), 1, + STATE(2722), 1, sym_comment, - ACTIONS(4348), 1, - anon_sym_COLON, - [89384] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4026), 1, - anon_sym_EQ_GT, - [89391] = 2, - ACTIONS(1203), 1, + [102615] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4277), 1, + anon_sym_while, + STATE(2723), 1, sym_comment, - ACTIONS(4350), 1, + [102628] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - [89398] = 2, - ACTIONS(1203), 1, + STATE(2724), 1, sym_comment, - ACTIONS(4352), 1, + [102641] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4281), 1, anon_sym_EQ_GT, - [89405] = 2, - ACTIONS(1203), 1, + STATE(2725), 1, sym_comment, - ACTIONS(4354), 1, + [102654] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4283), 1, anon_sym_EQ_GT, - [89412] = 2, - ACTIONS(1203), 1, + STATE(2726), 1, sym_comment, - ACTIONS(4024), 1, - anon_sym_EQ_GT, - [89419] = 2, - ACTIONS(1203), 1, + [102667] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4285), 1, + sym_identifier, + STATE(2727), 1, sym_comment, - ACTIONS(4356), 1, + [102680] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2324), 1, anon_sym_RPAREN, - [89426] = 2, - ACTIONS(1203), 1, + STATE(2728), 1, sym_comment, - ACTIONS(4358), 1, + [102693] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4287), 1, anon_sym_EQ_GT, - [89433] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(2401), 1, - anon_sym_RPAREN, - [89440] = 2, - ACTIONS(1203), 1, + STATE(2729), 1, sym_comment, - ACTIONS(2419), 1, - anon_sym_RBRACK, - [89447] = 2, - ACTIONS(1203), 1, + [102706] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4289), 1, + anon_sym_EQ, + STATE(2730), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_EQ_GT, - [89454] = 2, - ACTIONS(1203), 1, + [102719] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4291), 1, + anon_sym_RPAREN, + STATE(2731), 1, sym_comment, - ACTIONS(4362), 1, - anon_sym_EQ, - [89461] = 2, - ACTIONS(1203), 1, + [102732] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2303), 1, + anon_sym_RPAREN, + STATE(2732), 1, sym_comment, - ACTIONS(2459), 1, + [102745] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2498), 1, anon_sym_in, - [89468] = 2, - ACTIONS(1203), 1, + STATE(2733), 1, sym_comment, - ACTIONS(4364), 1, - anon_sym_SLASH2, - [89475] = 2, - ACTIONS(1203), 1, + [102758] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2307), 1, + anon_sym_RPAREN, + STATE(2734), 1, sym_comment, - ACTIONS(4366), 1, - anon_sym_COLON, - [89482] = 2, - ACTIONS(1203), 1, + [102771] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4293), 1, + anon_sym_RPAREN, + STATE(2735), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_from, - [89489] = 2, - ACTIONS(1203), 1, + [102784] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2293), 1, + anon_sym_RPAREN, + STATE(2736), 1, sym_comment, - ACTIONS(2379), 1, + [102797] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2305), 1, anon_sym_RPAREN, - [89496] = 2, - ACTIONS(3), 1, + STATE(2737), 1, sym_comment, - ACTIONS(4370), 1, - sym_identifier, - [89503] = 2, - ACTIONS(1203), 1, + [102810] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2297), 1, + anon_sym_COLON, + STATE(2738), 1, sym_comment, - ACTIONS(4372), 1, + [102823] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4295), 1, anon_sym_from, - [89510] = 2, - ACTIONS(3), 1, + STATE(2739), 1, sym_comment, - ACTIONS(4374), 1, - sym_identifier, - [89517] = 2, - ACTIONS(1203), 1, + [102836] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3755), 1, + anon_sym_GT, + STATE(2740), 1, sym_comment, - ACTIONS(4376), 1, - anon_sym_from, - [89524] = 2, - ACTIONS(1203), 1, + [102849] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4297), 1, + anon_sym_SLASH2, + STATE(2741), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_GT, - [89531] = 2, - ACTIONS(3), 1, + [102862] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4299), 1, + anon_sym_EQ_GT, + STATE(2742), 1, sym_comment, - ACTIONS(4378), 1, - sym_identifier, - [89538] = 2, - ACTIONS(1203), 1, + [102875] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4301), 1, + anon_sym_EQ_GT, + STATE(2743), 1, sym_comment, - ACTIONS(4380), 1, - anon_sym_from, - [89545] = 2, - ACTIONS(1203), 1, + [102888] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4303), 1, + anon_sym_EQ_GT, + STATE(2744), 1, sym_comment, - ACTIONS(3837), 1, + [102901] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3690), 1, anon_sym_GT, - [89552] = 2, - ACTIONS(1203), 1, + STATE(2745), 1, sym_comment, - ACTIONS(2356), 1, - anon_sym_RBRACE, - [89559] = 2, - ACTIONS(3), 1, + [102914] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2309), 1, + anon_sym_RBRACK, + STATE(2746), 1, sym_comment, - ACTIONS(4382), 1, - sym_identifier, - [89566] = 2, - ACTIONS(1203), 1, + [102927] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2295), 1, + anon_sym_RPAREN, + STATE(2747), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_RBRACK, - [89573] = 2, + [102940] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4305), 1, + sym_identifier, + STATE(2748), 1, sym_comment, - ACTIONS(4384), 1, + [102953] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4307), 1, sym_identifier, - [89580] = 2, - ACTIONS(1203), 1, + STATE(2749), 1, sym_comment, - ACTIONS(2362), 1, - anon_sym_RBRACE, - [89587] = 2, - ACTIONS(1203), 1, + [102966] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4309), 1, + anon_sym_function, + STATE(2750), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_SLASH2, - [89594] = 2, - ACTIONS(1203), 1, + [102979] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4311), 1, + anon_sym_RPAREN, + STATE(2751), 1, sym_comment, - ACTIONS(4388), 1, + [102992] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4067), 1, anon_sym_EQ_GT, - [89601] = 2, - ACTIONS(1203), 1, + STATE(2752), 1, sym_comment, - ACTIONS(4390), 1, - anon_sym_EQ_GT, - [89608] = 2, - ACTIONS(1203), 1, + [103005] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2187), 1, + anon_sym_in, + STATE(2753), 1, sym_comment, - ACTIONS(4392), 1, + [103018] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4069), 1, anon_sym_EQ_GT, - [89615] = 2, - ACTIONS(1203), 1, + STATE(2754), 1, sym_comment, - ACTIONS(3368), 1, - anon_sym_EQ, - [89622] = 2, - ACTIONS(1203), 1, + [103031] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4313), 1, + sym_identifier, + STATE(2755), 1, sym_comment, - ACTIONS(4394), 1, + [103044] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4315), 1, anon_sym_EQ_GT, - [89629] = 2, - ACTIONS(1203), 1, + STATE(2756), 1, sym_comment, - ACTIONS(2371), 1, - anon_sym_RPAREN, - [89636] = 2, - ACTIONS(1203), 1, + [103057] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4317), 1, + anon_sym_SLASH2, + STATE(2757), 1, sym_comment, - ACTIONS(2373), 1, - anon_sym_RPAREN, - [89643] = 2, - ACTIONS(3), 1, + [103070] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4319), 1, + anon_sym_target, + STATE(2758), 1, sym_comment, - ACTIONS(4396), 1, - sym_identifier, - [89650] = 2, - ACTIONS(1203), 1, + [103083] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4321), 1, + anon_sym_COLON, + STATE(2759), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_EQ_GT, - [89657] = 2, - ACTIONS(1203), 1, + [103096] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4323), 1, + anon_sym_target, + STATE(2760), 1, sym_comment, - ACTIONS(4400), 1, - anon_sym_EQ, - [89664] = 2, - ACTIONS(1203), 1, + [103109] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2366), 1, + anon_sym_RBRACE, + STATE(2761), 1, sym_comment, - ACTIONS(2193), 1, - anon_sym_in, - [89671] = 2, - ACTIONS(1203), 1, + [103122] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4325), 1, + anon_sym_from, + STATE(2762), 1, sym_comment, - ACTIONS(4402), 1, - anon_sym_EQ_GT, - [89678] = 2, - ACTIONS(1203), 1, + [103135] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4327), 1, + anon_sym_SLASH2, + STATE(2763), 1, + sym_comment, + [103148] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4329), 1, + anon_sym_GT, + STATE(2764), 1, + sym_comment, + [103161] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2339), 1, + anon_sym_RPAREN, + STATE(2765), 1, + sym_comment, + [103174] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4331), 1, + sym_identifier, + STATE(2766), 1, sym_comment, - ACTIONS(4404), 1, + [103187] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4333), 1, + anon_sym_from, + STATE(2767), 1, + sym_comment, + [103200] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4335), 1, anon_sym_EQ_GT, - [89685] = 2, - ACTIONS(1203), 1, + STATE(2768), 1, sym_comment, - ACTIONS(4406), 1, + [103213] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4337), 1, anon_sym_EQ_GT, - [89692] = 2, - ACTIONS(1203), 1, + STATE(2769), 1, sym_comment, - ACTIONS(3784), 1, - anon_sym_RBRACE, - [89699] = 2, - ACTIONS(1203), 1, + [103226] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4339), 1, + anon_sym_from, + STATE(2770), 1, sym_comment, - ACTIONS(4408), 1, - anon_sym_target, - [89706] = 2, - ACTIONS(1203), 1, + [103239] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3805), 1, + anon_sym_GT, + STATE(2771), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_SLASH2, - [89713] = 2, - ACTIONS(1203), 1, + [103252] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2301), 1, + anon_sym_RBRACK, + STATE(2772), 1, sym_comment, - ACTIONS(1912), 1, - anon_sym_in, - [89720] = 2, - ACTIONS(1203), 1, + [103265] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_EQ_GT, + STATE(2773), 1, sym_comment, - ACTIONS(4412), 1, - anon_sym_target, - [89727] = 2, + [103278] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4343), 1, sym_identifier, - [89734] = 2, - ACTIONS(1203), 1, + STATE(2774), 1, sym_comment, - ACTIONS(2385), 1, - anon_sym_RPAREN, - [89741] = 2, - ACTIONS(3), 1, + [103291] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4345), 1, + anon_sym_EQ, + STATE(2775), 1, sym_comment, - ACTIONS(4416), 1, - sym_identifier, - [89748] = 2, + [103304] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4347), 1, + sym_identifier, + STATE(2776), 1, sym_comment, - ACTIONS(4418), 1, + [103317] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4349), 1, sym_identifier, - [89755] = 2, - ACTIONS(1203), 1, + STATE(2777), 1, sym_comment, - ACTIONS(4420), 1, + [103330] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3827), 1, anon_sym_GT, - [89762] = 2, - ACTIONS(3), 1, + STATE(2778), 1, sym_comment, - ACTIONS(4422), 1, - sym_identifier, - [89769] = 2, - ACTIONS(3), 1, + [103343] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4351), 1, + anon_sym_SLASH2, + STATE(2779), 1, sym_comment, - ACTIONS(4424), 1, - sym_identifier, - [89776] = 2, - ACTIONS(1203), 1, + [103356] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4353), 1, + anon_sym_EQ_GT, + STATE(2780), 1, sym_comment, - ACTIONS(3741), 1, - anon_sym_GT, - [89783] = 2, - ACTIONS(3), 1, + [103369] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4355), 1, + anon_sym_EQ_GT, + STATE(2781), 1, sym_comment, - ACTIONS(4426), 1, - sym_identifier, - [89790] = 2, + [103382] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4357), 1, sym_identifier, - [89797] = 2, - ACTIONS(1203), 1, + STATE(2782), 1, sym_comment, - ACTIONS(2391), 1, - anon_sym_RBRACK, - [89804] = 2, - ACTIONS(1203), 1, + [103395] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4359), 1, + anon_sym_EQ_GT, + STATE(2783), 1, sym_comment, - ACTIONS(2393), 1, - anon_sym_RBRACE, - [89811] = 2, - ACTIONS(1203), 1, + [103408] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4361), 1, + sym_identifier, + STATE(2784), 1, sym_comment, - ACTIONS(2397), 1, - anon_sym_RBRACK, - [89818] = 2, - ACTIONS(1203), 1, + [103421] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2392), 1, + anon_sym_RBRACE, + STATE(2785), 1, sym_comment, - ACTIONS(2729), 1, + [103434] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2765), 1, anon_sym_LPAREN, - [89825] = 2, - ACTIONS(1203), 1, + STATE(2786), 1, sym_comment, - ACTIONS(4430), 1, - anon_sym_SLASH2, - [89832] = 2, - ACTIONS(1203), 1, + [103447] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2376), 1, + anon_sym_RBRACK, + STATE(2787), 1, sym_comment, - ACTIONS(4432), 1, - anon_sym_EQ_GT, - [89839] = 2, + [103460] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4363), 1, sym_identifier, - [89846] = 2, - ACTIONS(1203), 1, + STATE(2788), 1, sym_comment, - ACTIONS(4436), 1, - anon_sym_EQ_GT, - [89853] = 2, + [103473] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4365), 1, sym_identifier, - [89860] = 2, - ACTIONS(1203), 1, - sym_comment, - ACTIONS(4440), 1, - anon_sym_EQ_GT, - [89867] = 2, - ACTIONS(1203), 1, + STATE(2789), 1, sym_comment, - ACTIONS(2403), 1, + [103486] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2315), 1, anon_sym_RPAREN, - [89874] = 2, - ACTIONS(1203), 1, + STATE(2790), 1, sym_comment, - ACTIONS(2415), 1, + [103499] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2364), 1, anon_sym_RPAREN, - [89881] = 2, - ACTIONS(1203), 1, + STATE(2791), 1, sym_comment, - ACTIONS(4442), 1, - anon_sym_EQ, - [89888] = 2, - ACTIONS(1203), 1, + [103512] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4367), 1, + sym_identifier, + STATE(2792), 1, + sym_comment, + [103525] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2353), 1, + anon_sym_RBRACE, + STATE(2793), 1, sym_comment, - ACTIONS(4444), 1, + [103538] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4369), 1, anon_sym_EQ_GT, - [89895] = 2, - ACTIONS(1203), 1, + STATE(2794), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_EQ, - [89902] = 2, - ACTIONS(1203), 1, + [103551] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4371), 1, + sym_identifier, + STATE(2795), 1, sym_comment, - ACTIONS(2335), 1, - anon_sym_in, - [89909] = 2, - ACTIONS(1203), 1, + [103564] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3572), 1, + anon_sym_EQ, + STATE(2796), 1, sym_comment, - ACTIONS(3772), 1, - anon_sym_GT, - [89916] = 2, + [103577] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4446), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4373), 1, sym_identifier, - [89923] = 2, - ACTIONS(1203), 1, + STATE(2797), 1, sym_comment, - ACTIONS(3989), 1, - anon_sym_RBRACE, - [89930] = 2, + [103590] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4375), 1, + sym_identifier, + STATE(2798), 1, sym_comment, - ACTIONS(4448), 1, + [103603] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4377), 1, sym_identifier, - [89937] = 2, - ACTIONS(1203), 1, + STATE(2799), 1, + sym_comment, + [103616] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4379), 1, + anon_sym_EQ_GT, + STATE(2800), 1, + sym_comment, + [103629] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(2420), 1, + anon_sym_in, + STATE(2801), 1, + sym_comment, + [103642] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3296), 1, + anon_sym_EQ, + STATE(2802), 1, sym_comment, - ACTIONS(4450), 1, + [103655] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(1963), 1, + anon_sym_in, + STATE(2803), 1, + sym_comment, + [103668] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4381), 1, + anon_sym_as, + STATE(2804), 1, + sym_comment, + [103681] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4383), 1, anon_sym_from, - [89944] = 2, + STATE(2805), 1, + sym_comment, + [103694] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3883), 1, + anon_sym_RBRACE, + STATE(2806), 1, + sym_comment, + [103707] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4385), 1, + anon_sym_COLON, + STATE(2807), 1, + sym_comment, + [103720] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4387), 1, + sym_identifier, + STATE(2808), 1, sym_comment, - ACTIONS(4452), 1, + [103733] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(3925), 1, + anon_sym_RBRACE, + STATE(2809), 1, + sym_comment, + [103746] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4389), 1, sym_identifier, - [89951] = 2, - ACTIONS(1203), 1, + STATE(2810), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym_as, - [89958] = 2, - ACTIONS(1203), 1, + [103759] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4391), 1, + sym_identifier, + STATE(2811), 1, sym_comment, - ACTIONS(4456), 1, + [103772] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4393), 1, anon_sym_function, - [89965] = 2, - ACTIONS(1203), 1, + STATE(2812), 1, sym_comment, - ACTIONS(4458), 1, + [103785] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4395), 1, anon_sym_function, - [89972] = 2, - ACTIONS(1203), 1, + STATE(2813), 1, sym_comment, - ACTIONS(4460), 1, + [103798] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1239), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, anon_sym_function, - [89979] = 2, - ACTIONS(1203), 1, + STATE(2814), 1, sym_comment, - ACTIONS(4462), 1, - anon_sym_function, + [103811] = 1, + ACTIONS(4399), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(440)] = 0, - [SMALL_STATE(441)] = 77, - [SMALL_STATE(442)] = 164, - [SMALL_STATE(443)] = 251, - [SMALL_STATE(444)] = 341, - [SMALL_STATE(445)] = 427, - [SMALL_STATE(446)] = 497, - [SMALL_STATE(447)] = 585, - [SMALL_STATE(448)] = 671, - [SMALL_STATE(449)] = 749, - [SMALL_STATE(450)] = 825, - [SMALL_STATE(451)] = 913, - [SMALL_STATE(452)] = 1001, - [SMALL_STATE(453)] = 1089, - [SMALL_STATE(454)] = 1177, - [SMALL_STATE(455)] = 1247, - [SMALL_STATE(456)] = 1335, - [SMALL_STATE(457)] = 1421, - [SMALL_STATE(458)] = 1509, - [SMALL_STATE(459)] = 1597, - [SMALL_STATE(460)] = 1683, - [SMALL_STATE(461)] = 1760, - [SMALL_STATE(462)] = 1829, - [SMALL_STATE(463)] = 1898, - [SMALL_STATE(464)] = 1969, - [SMALL_STATE(465)] = 2036, - [SMALL_STATE(466)] = 2123, - [SMALL_STATE(467)] = 2194, - [SMALL_STATE(468)] = 2263, - [SMALL_STATE(469)] = 2334, - [SMALL_STATE(470)] = 2403, - [SMALL_STATE(471)] = 2470, - [SMALL_STATE(472)] = 2536, - [SMALL_STATE(473)] = 2604, - [SMALL_STATE(474)] = 2688, - [SMALL_STATE(475)] = 2758, - [SMALL_STATE(476)] = 2846, - [SMALL_STATE(477)] = 2914, - [SMALL_STATE(478)] = 2998, - [SMALL_STATE(479)] = 3068, - [SMALL_STATE(480)] = 3136, - [SMALL_STATE(481)] = 3206, - [SMALL_STATE(482)] = 3274, - [SMALL_STATE(483)] = 3342, - [SMALL_STATE(484)] = 3410, - [SMALL_STATE(485)] = 3480, - [SMALL_STATE(486)] = 3564, - [SMALL_STATE(487)] = 3648, - [SMALL_STATE(488)] = 3718, - [SMALL_STATE(489)] = 3786, - [SMALL_STATE(490)] = 3854, - [SMALL_STATE(491)] = 3938, - [SMALL_STATE(492)] = 4006, - [SMALL_STATE(493)] = 4090, - [SMALL_STATE(494)] = 4158, - [SMALL_STATE(495)] = 4226, - [SMALL_STATE(496)] = 4292, - [SMALL_STATE(497)] = 4360, - [SMALL_STATE(498)] = 4428, - [SMALL_STATE(499)] = 4496, - [SMALL_STATE(500)] = 4562, - [SMALL_STATE(501)] = 4628, - [SMALL_STATE(502)] = 4696, - [SMALL_STATE(503)] = 4762, - [SMALL_STATE(504)] = 4830, - [SMALL_STATE(505)] = 4898, - [SMALL_STATE(506)] = 4964, - [SMALL_STATE(507)] = 5032, - [SMALL_STATE(508)] = 5100, - [SMALL_STATE(509)] = 5168, - [SMALL_STATE(510)] = 5238, - [SMALL_STATE(511)] = 5310, - [SMALL_STATE(512)] = 5380, - [SMALL_STATE(513)] = 5445, - [SMALL_STATE(514)] = 5510, - [SMALL_STATE(515)] = 5575, - [SMALL_STATE(516)] = 5640, - [SMALL_STATE(517)] = 5705, - [SMALL_STATE(518)] = 5776, - [SMALL_STATE(519)] = 5843, - [SMALL_STATE(520)] = 5910, - [SMALL_STATE(521)] = 5977, - [SMALL_STATE(522)] = 6044, - [SMALL_STATE(523)] = 6111, - [SMALL_STATE(524)] = 6178, - [SMALL_STATE(525)] = 6247, - [SMALL_STATE(526)] = 6314, - [SMALL_STATE(527)] = 6381, - [SMALL_STATE(528)] = 6448, - [SMALL_STATE(529)] = 6517, - [SMALL_STATE(530)] = 6584, - [SMALL_STATE(531)] = 6651, - [SMALL_STATE(532)] = 6716, - [SMALL_STATE(533)] = 6781, - [SMALL_STATE(534)] = 6846, - [SMALL_STATE(535)] = 6913, - [SMALL_STATE(536)] = 6984, - [SMALL_STATE(537)] = 7049, - [SMALL_STATE(538)] = 7116, - [SMALL_STATE(539)] = 7183, - [SMALL_STATE(540)] = 7250, - [SMALL_STATE(541)] = 7315, - [SMALL_STATE(542)] = 7380, - [SMALL_STATE(543)] = 7449, - [SMALL_STATE(544)] = 7514, - [SMALL_STATE(545)] = 7579, - [SMALL_STATE(546)] = 7644, - [SMALL_STATE(547)] = 7709, - [SMALL_STATE(548)] = 7776, - [SMALL_STATE(549)] = 7843, - [SMALL_STATE(550)] = 7912, - [SMALL_STATE(551)] = 7979, - [SMALL_STATE(552)] = 8046, - [SMALL_STATE(553)] = 8111, - [SMALL_STATE(554)] = 8178, - [SMALL_STATE(555)] = 8243, - [SMALL_STATE(556)] = 8308, - [SMALL_STATE(557)] = 8373, - [SMALL_STATE(558)] = 8438, - [SMALL_STATE(559)] = 8505, - [SMALL_STATE(560)] = 8570, - [SMALL_STATE(561)] = 8637, - [SMALL_STATE(562)] = 8702, - [SMALL_STATE(563)] = 8771, - [SMALL_STATE(564)] = 8836, - [SMALL_STATE(565)] = 8919, - [SMALL_STATE(566)] = 8984, - [SMALL_STATE(567)] = 9049, - [SMALL_STATE(568)] = 9114, - [SMALL_STATE(569)] = 9181, - [SMALL_STATE(570)] = 9250, - [SMALL_STATE(571)] = 9315, - [SMALL_STATE(572)] = 9380, - [SMALL_STATE(573)] = 9445, - [SMALL_STATE(574)] = 9510, - [SMALL_STATE(575)] = 9575, - [SMALL_STATE(576)] = 9640, - [SMALL_STATE(577)] = 9705, - [SMALL_STATE(578)] = 9770, - [SMALL_STATE(579)] = 9835, - [SMALL_STATE(580)] = 9904, - [SMALL_STATE(581)] = 9969, - [SMALL_STATE(582)] = 10034, - [SMALL_STATE(583)] = 10099, - [SMALL_STATE(584)] = 10182, - [SMALL_STATE(585)] = 10247, - [SMALL_STATE(586)] = 10312, - [SMALL_STATE(587)] = 10381, - [SMALL_STATE(588)] = 10446, - [SMALL_STATE(589)] = 10515, - [SMALL_STATE(590)] = 10580, - [SMALL_STATE(591)] = 10645, - [SMALL_STATE(592)] = 10710, - [SMALL_STATE(593)] = 10797, - [SMALL_STATE(594)] = 10862, - [SMALL_STATE(595)] = 10931, - [SMALL_STATE(596)] = 10996, - [SMALL_STATE(597)] = 11061, - [SMALL_STATE(598)] = 11126, - [SMALL_STATE(599)] = 11191, - [SMALL_STATE(600)] = 11256, - [SMALL_STATE(601)] = 11321, - [SMALL_STATE(602)] = 11392, - [SMALL_STATE(603)] = 11457, - [SMALL_STATE(604)] = 11522, - [SMALL_STATE(605)] = 11587, - [SMALL_STATE(606)] = 11652, - [SMALL_STATE(607)] = 11717, - [SMALL_STATE(608)] = 11782, - [SMALL_STATE(609)] = 11847, - [SMALL_STATE(610)] = 11912, - [SMALL_STATE(611)] = 11977, - [SMALL_STATE(612)] = 12046, - [SMALL_STATE(613)] = 12111, - [SMALL_STATE(614)] = 12176, - [SMALL_STATE(615)] = 12241, - [SMALL_STATE(616)] = 12306, - [SMALL_STATE(617)] = 12371, - [SMALL_STATE(618)] = 12436, - [SMALL_STATE(619)] = 12501, - [SMALL_STATE(620)] = 12570, - [SMALL_STATE(621)] = 12635, - [SMALL_STATE(622)] = 12700, - [SMALL_STATE(623)] = 12767, - [SMALL_STATE(624)] = 12832, - [SMALL_STATE(625)] = 12897, - [SMALL_STATE(626)] = 12962, - [SMALL_STATE(627)] = 13027, - [SMALL_STATE(628)] = 13092, - [SMALL_STATE(629)] = 13157, - [SMALL_STATE(630)] = 13222, - [SMALL_STATE(631)] = 13287, - [SMALL_STATE(632)] = 13352, - [SMALL_STATE(633)] = 13419, - [SMALL_STATE(634)] = 13484, - [SMALL_STATE(635)] = 13549, - [SMALL_STATE(636)] = 13614, - [SMALL_STATE(637)] = 13679, - [SMALL_STATE(638)] = 13744, - [SMALL_STATE(639)] = 13809, - [SMALL_STATE(640)] = 13874, - [SMALL_STATE(641)] = 13939, - [SMALL_STATE(642)] = 14004, - [SMALL_STATE(643)] = 14069, - [SMALL_STATE(644)] = 14136, - [SMALL_STATE(645)] = 14201, - [SMALL_STATE(646)] = 14266, - [SMALL_STATE(647)] = 14335, - [SMALL_STATE(648)] = 14400, - [SMALL_STATE(649)] = 14465, - [SMALL_STATE(650)] = 14530, - [SMALL_STATE(651)] = 14595, - [SMALL_STATE(652)] = 14660, - [SMALL_STATE(653)] = 14725, - [SMALL_STATE(654)] = 14794, - [SMALL_STATE(655)] = 14859, - [SMALL_STATE(656)] = 14924, - [SMALL_STATE(657)] = 14989, - [SMALL_STATE(658)] = 15054, - [SMALL_STATE(659)] = 15119, - [SMALL_STATE(660)] = 15183, - [SMALL_STATE(661)] = 15247, - [SMALL_STATE(662)] = 15311, - [SMALL_STATE(663)] = 15377, - [SMALL_STATE(664)] = 15441, - [SMALL_STATE(665)] = 15505, - [SMALL_STATE(666)] = 15571, - [SMALL_STATE(667)] = 15637, - [SMALL_STATE(668)] = 15701, - [SMALL_STATE(669)] = 15765, - [SMALL_STATE(670)] = 15831, - [SMALL_STATE(671)] = 15895, - [SMALL_STATE(672)] = 15961, - [SMALL_STATE(673)] = 16025, - [SMALL_STATE(674)] = 16089, - [SMALL_STATE(675)] = 16153, - [SMALL_STATE(676)] = 16219, - [SMALL_STATE(677)] = 16285, - [SMALL_STATE(678)] = 16351, - [SMALL_STATE(679)] = 16415, - [SMALL_STATE(680)] = 16481, - [SMALL_STATE(681)] = 16547, - [SMALL_STATE(682)] = 16613, - [SMALL_STATE(683)] = 16677, - [SMALL_STATE(684)] = 16743, - [SMALL_STATE(685)] = 16809, - [SMALL_STATE(686)] = 16877, - [SMALL_STATE(687)] = 16941, - [SMALL_STATE(688)] = 17007, - [SMALL_STATE(689)] = 17073, - [SMALL_STATE(690)] = 17141, - [SMALL_STATE(691)] = 17205, - [SMALL_STATE(692)] = 17273, - [SMALL_STATE(693)] = 17339, - [SMALL_STATE(694)] = 17403, - [SMALL_STATE(695)] = 17467, - [SMALL_STATE(696)] = 17533, - [SMALL_STATE(697)] = 17599, - [SMALL_STATE(698)] = 17663, - [SMALL_STATE(699)] = 17729, - [SMALL_STATE(700)] = 17795, - [SMALL_STATE(701)] = 17859, - [SMALL_STATE(702)] = 17923, - [SMALL_STATE(703)] = 17989, - [SMALL_STATE(704)] = 18053, - [SMALL_STATE(705)] = 18117, - [SMALL_STATE(706)] = 18181, - [SMALL_STATE(707)] = 18247, - [SMALL_STATE(708)] = 18313, - [SMALL_STATE(709)] = 18377, - [SMALL_STATE(710)] = 18443, - [SMALL_STATE(711)] = 18509, - [SMALL_STATE(712)] = 18573, - [SMALL_STATE(713)] = 18637, - [SMALL_STATE(714)] = 18701, - [SMALL_STATE(715)] = 18765, - [SMALL_STATE(716)] = 18829, - [SMALL_STATE(717)] = 18895, - [SMALL_STATE(718)] = 18963, - [SMALL_STATE(719)] = 19027, - [SMALL_STATE(720)] = 19091, - [SMALL_STATE(721)] = 19155, - [SMALL_STATE(722)] = 19219, - [SMALL_STATE(723)] = 19283, - [SMALL_STATE(724)] = 19347, - [SMALL_STATE(725)] = 19413, - [SMALL_STATE(726)] = 19479, - [SMALL_STATE(727)] = 19545, - [SMALL_STATE(728)] = 19611, - [SMALL_STATE(729)] = 19675, - [SMALL_STATE(730)] = 19741, - [SMALL_STATE(731)] = 19807, - [SMALL_STATE(732)] = 19871, - [SMALL_STATE(733)] = 19935, - [SMALL_STATE(734)] = 20001, - [SMALL_STATE(735)] = 20065, - [SMALL_STATE(736)] = 20131, - [SMALL_STATE(737)] = 20195, - [SMALL_STATE(738)] = 20261, - [SMALL_STATE(739)] = 20327, - [SMALL_STATE(740)] = 20393, - [SMALL_STATE(741)] = 20457, - [SMALL_STATE(742)] = 20523, - [SMALL_STATE(743)] = 20589, - [SMALL_STATE(744)] = 20655, - [SMALL_STATE(745)] = 20721, - [SMALL_STATE(746)] = 20787, - [SMALL_STATE(747)] = 20853, - [SMALL_STATE(748)] = 20919, - [SMALL_STATE(749)] = 20985, - [SMALL_STATE(750)] = 21051, - [SMALL_STATE(751)] = 21117, - [SMALL_STATE(752)] = 21183, - [SMALL_STATE(753)] = 21251, - [SMALL_STATE(754)] = 21317, - [SMALL_STATE(755)] = 21383, - [SMALL_STATE(756)] = 21449, - [SMALL_STATE(757)] = 21515, - [SMALL_STATE(758)] = 21581, - [SMALL_STATE(759)] = 21647, - [SMALL_STATE(760)] = 21713, - [SMALL_STATE(761)] = 21777, - [SMALL_STATE(762)] = 21841, - [SMALL_STATE(763)] = 21907, - [SMALL_STATE(764)] = 21971, - [SMALL_STATE(765)] = 22037, - [SMALL_STATE(766)] = 22101, - [SMALL_STATE(767)] = 22167, - [SMALL_STATE(768)] = 22233, - [SMALL_STATE(769)] = 22297, - [SMALL_STATE(770)] = 22361, - [SMALL_STATE(771)] = 22427, - [SMALL_STATE(772)] = 22493, - [SMALL_STATE(773)] = 22559, - [SMALL_STATE(774)] = 22623, - [SMALL_STATE(775)] = 22689, - [SMALL_STATE(776)] = 22757, - [SMALL_STATE(777)] = 22825, - [SMALL_STATE(778)] = 22893, - [SMALL_STATE(779)] = 22961, - [SMALL_STATE(780)] = 23027, - [SMALL_STATE(781)] = 23093, - [SMALL_STATE(782)] = 23159, - [SMALL_STATE(783)] = 23225, - [SMALL_STATE(784)] = 23291, - [SMALL_STATE(785)] = 23355, - [SMALL_STATE(786)] = 23421, - [SMALL_STATE(787)] = 23487, - [SMALL_STATE(788)] = 23553, - [SMALL_STATE(789)] = 23619, - [SMALL_STATE(790)] = 23685, - [SMALL_STATE(791)] = 23751, - [SMALL_STATE(792)] = 23817, - [SMALL_STATE(793)] = 23883, - [SMALL_STATE(794)] = 23949, - [SMALL_STATE(795)] = 24015, - [SMALL_STATE(796)] = 24081, - [SMALL_STATE(797)] = 24145, - [SMALL_STATE(798)] = 24209, - [SMALL_STATE(799)] = 24275, - [SMALL_STATE(800)] = 24339, - [SMALL_STATE(801)] = 24403, - [SMALL_STATE(802)] = 24467, - [SMALL_STATE(803)] = 24531, - [SMALL_STATE(804)] = 24595, - [SMALL_STATE(805)] = 24661, - [SMALL_STATE(806)] = 24725, - [SMALL_STATE(807)] = 24789, - [SMALL_STATE(808)] = 24853, - [SMALL_STATE(809)] = 24919, - [SMALL_STATE(810)] = 24983, - [SMALL_STATE(811)] = 25049, - [SMALL_STATE(812)] = 25115, - [SMALL_STATE(813)] = 25181, - [SMALL_STATE(814)] = 25247, - [SMALL_STATE(815)] = 25311, - [SMALL_STATE(816)] = 25377, - [SMALL_STATE(817)] = 25443, - [SMALL_STATE(818)] = 25507, - [SMALL_STATE(819)] = 25573, - [SMALL_STATE(820)] = 25639, - [SMALL_STATE(821)] = 25705, - [SMALL_STATE(822)] = 25769, - [SMALL_STATE(823)] = 25835, - [SMALL_STATE(824)] = 25903, - [SMALL_STATE(825)] = 25967, - [SMALL_STATE(826)] = 26031, - [SMALL_STATE(827)] = 26097, - [SMALL_STATE(828)] = 26165, - [SMALL_STATE(829)] = 26229, - [SMALL_STATE(830)] = 26293, - [SMALL_STATE(831)] = 26357, - [SMALL_STATE(832)] = 26423, - [SMALL_STATE(833)] = 26487, - [SMALL_STATE(834)] = 26551, - [SMALL_STATE(835)] = 26615, - [SMALL_STATE(836)] = 26679, - [SMALL_STATE(837)] = 26743, - [SMALL_STATE(838)] = 26807, - [SMALL_STATE(839)] = 26875, - [SMALL_STATE(840)] = 26939, - [SMALL_STATE(841)] = 27003, - [SMALL_STATE(842)] = 27067, - [SMALL_STATE(843)] = 27131, - [SMALL_STATE(844)] = 27195, - [SMALL_STATE(845)] = 27259, - [SMALL_STATE(846)] = 27325, - [SMALL_STATE(847)] = 27389, - [SMALL_STATE(848)] = 27455, - [SMALL_STATE(849)] = 27521, - [SMALL_STATE(850)] = 27585, - [SMALL_STATE(851)] = 27649, - [SMALL_STATE(852)] = 27713, - [SMALL_STATE(853)] = 27779, - [SMALL_STATE(854)] = 27845, - [SMALL_STATE(855)] = 27911, - [SMALL_STATE(856)] = 27977, - [SMALL_STATE(857)] = 28041, - [SMALL_STATE(858)] = 28105, - [SMALL_STATE(859)] = 28169, - [SMALL_STATE(860)] = 28233, - [SMALL_STATE(861)] = 28297, - [SMALL_STATE(862)] = 28363, - [SMALL_STATE(863)] = 28427, - [SMALL_STATE(864)] = 28493, - [SMALL_STATE(865)] = 28557, - [SMALL_STATE(866)] = 28623, - [SMALL_STATE(867)] = 28687, - [SMALL_STATE(868)] = 28751, - [SMALL_STATE(869)] = 28817, - [SMALL_STATE(870)] = 28881, - [SMALL_STATE(871)] = 28945, - [SMALL_STATE(872)] = 29009, - [SMALL_STATE(873)] = 29073, - [SMALL_STATE(874)] = 29138, - [SMALL_STATE(875)] = 29203, - [SMALL_STATE(876)] = 29268, - [SMALL_STATE(877)] = 29333, - [SMALL_STATE(878)] = 29398, - [SMALL_STATE(879)] = 29463, - [SMALL_STATE(880)] = 29528, - [SMALL_STATE(881)] = 29593, - [SMALL_STATE(882)] = 29658, - [SMALL_STATE(883)] = 29723, - [SMALL_STATE(884)] = 29788, - [SMALL_STATE(885)] = 29853, - [SMALL_STATE(886)] = 29918, - [SMALL_STATE(887)] = 29983, - [SMALL_STATE(888)] = 30048, - [SMALL_STATE(889)] = 30113, - [SMALL_STATE(890)] = 30178, - [SMALL_STATE(891)] = 30243, - [SMALL_STATE(892)] = 30308, - [SMALL_STATE(893)] = 30373, - [SMALL_STATE(894)] = 30438, - [SMALL_STATE(895)] = 30503, - [SMALL_STATE(896)] = 30568, - [SMALL_STATE(897)] = 30633, - [SMALL_STATE(898)] = 30698, - [SMALL_STATE(899)] = 30763, - [SMALL_STATE(900)] = 30828, - [SMALL_STATE(901)] = 30893, - [SMALL_STATE(902)] = 30958, - [SMALL_STATE(903)] = 31023, - [SMALL_STATE(904)] = 31088, - [SMALL_STATE(905)] = 31153, - [SMALL_STATE(906)] = 31218, - [SMALL_STATE(907)] = 31283, - [SMALL_STATE(908)] = 31348, - [SMALL_STATE(909)] = 31413, - [SMALL_STATE(910)] = 31478, - [SMALL_STATE(911)] = 31543, - [SMALL_STATE(912)] = 31608, - [SMALL_STATE(913)] = 31673, - [SMALL_STATE(914)] = 31738, - [SMALL_STATE(915)] = 31803, - [SMALL_STATE(916)] = 31868, - [SMALL_STATE(917)] = 31933, - [SMALL_STATE(918)] = 31998, - [SMALL_STATE(919)] = 32063, - [SMALL_STATE(920)] = 32128, - [SMALL_STATE(921)] = 32193, - [SMALL_STATE(922)] = 32258, - [SMALL_STATE(923)] = 32323, - [SMALL_STATE(924)] = 32388, - [SMALL_STATE(925)] = 32469, - [SMALL_STATE(926)] = 32534, - [SMALL_STATE(927)] = 32615, - [SMALL_STATE(928)] = 32680, - [SMALL_STATE(929)] = 32745, - [SMALL_STATE(930)] = 32810, - [SMALL_STATE(931)] = 32875, - [SMALL_STATE(932)] = 32940, - [SMALL_STATE(933)] = 33005, - [SMALL_STATE(934)] = 33070, - [SMALL_STATE(935)] = 33135, - [SMALL_STATE(936)] = 33200, - [SMALL_STATE(937)] = 33265, - [SMALL_STATE(938)] = 33330, - [SMALL_STATE(939)] = 33395, - [SMALL_STATE(940)] = 33460, - [SMALL_STATE(941)] = 33525, - [SMALL_STATE(942)] = 33590, - [SMALL_STATE(943)] = 33655, - [SMALL_STATE(944)] = 33720, - [SMALL_STATE(945)] = 33785, - [SMALL_STATE(946)] = 33850, - [SMALL_STATE(947)] = 33915, - [SMALL_STATE(948)] = 33980, - [SMALL_STATE(949)] = 34045, - [SMALL_STATE(950)] = 34110, - [SMALL_STATE(951)] = 34175, - [SMALL_STATE(952)] = 34240, - [SMALL_STATE(953)] = 34305, - [SMALL_STATE(954)] = 34370, - [SMALL_STATE(955)] = 34435, - [SMALL_STATE(956)] = 34500, - [SMALL_STATE(957)] = 34565, - [SMALL_STATE(958)] = 34630, - [SMALL_STATE(959)] = 34695, - [SMALL_STATE(960)] = 34760, - [SMALL_STATE(961)] = 34825, - [SMALL_STATE(962)] = 34890, - [SMALL_STATE(963)] = 34955, - [SMALL_STATE(964)] = 35020, - [SMALL_STATE(965)] = 35085, - [SMALL_STATE(966)] = 35150, - [SMALL_STATE(967)] = 35215, - [SMALL_STATE(968)] = 35280, - [SMALL_STATE(969)] = 35345, - [SMALL_STATE(970)] = 35426, - [SMALL_STATE(971)] = 35491, - [SMALL_STATE(972)] = 35556, - [SMALL_STATE(973)] = 35621, - [SMALL_STATE(974)] = 35685, - [SMALL_STATE(975)] = 35753, - [SMALL_STATE(976)] = 35817, - [SMALL_STATE(977)] = 35881, - [SMALL_STATE(978)] = 35945, - [SMALL_STATE(979)] = 36009, - [SMALL_STATE(980)] = 36073, - [SMALL_STATE(981)] = 36137, - [SMALL_STATE(982)] = 36206, - [SMALL_STATE(983)] = 36275, - [SMALL_STATE(984)] = 36336, - [SMALL_STATE(985)] = 36405, - [SMALL_STATE(986)] = 36466, - [SMALL_STATE(987)] = 36527, - [SMALL_STATE(988)] = 36588, - [SMALL_STATE(989)] = 36649, - [SMALL_STATE(990)] = 36710, - [SMALL_STATE(991)] = 36771, - [SMALL_STATE(992)] = 36840, - [SMALL_STATE(993)] = 36912, - [SMALL_STATE(994)] = 36980, - [SMALL_STATE(995)] = 37050, - [SMALL_STATE(996)] = 37116, - [SMALL_STATE(997)] = 37186, - [SMALL_STATE(998)] = 37256, - [SMALL_STATE(999)] = 37326, - [SMALL_STATE(1000)] = 37388, - [SMALL_STATE(1001)] = 37458, - [SMALL_STATE(1002)] = 37528, - [SMALL_STATE(1003)] = 37590, - [SMALL_STATE(1004)] = 37658, - [SMALL_STATE(1005)] = 37726, - [SMALL_STATE(1006)] = 37796, - [SMALL_STATE(1007)] = 37866, - [SMALL_STATE(1008)] = 37928, - [SMALL_STATE(1009)] = 37998, - [SMALL_STATE(1010)] = 38066, - [SMALL_STATE(1011)] = 38128, - [SMALL_STATE(1012)] = 38196, - [SMALL_STATE(1013)] = 38266, - [SMALL_STATE(1014)] = 38336, - [SMALL_STATE(1015)] = 38406, - [SMALL_STATE(1016)] = 38472, - [SMALL_STATE(1017)] = 38540, - [SMALL_STATE(1018)] = 38608, - [SMALL_STATE(1019)] = 38676, - [SMALL_STATE(1020)] = 38738, - [SMALL_STATE(1021)] = 38800, - [SMALL_STATE(1022)] = 38862, - [SMALL_STATE(1023)] = 38932, - [SMALL_STATE(1024)] = 39002, - [SMALL_STATE(1025)] = 39072, - [SMALL_STATE(1026)] = 39142, - [SMALL_STATE(1027)] = 39214, - [SMALL_STATE(1028)] = 39283, - [SMALL_STATE(1029)] = 39350, - [SMALL_STATE(1030)] = 39415, - [SMALL_STATE(1031)] = 39484, - [SMALL_STATE(1032)] = 39553, - [SMALL_STATE(1033)] = 39620, - [SMALL_STATE(1034)] = 39687, - [SMALL_STATE(1035)] = 39752, - [SMALL_STATE(1036)] = 39822, - [SMALL_STATE(1037)] = 39888, - [SMALL_STATE(1038)] = 39958, - [SMALL_STATE(1039)] = 40024, - [SMALL_STATE(1040)] = 40090, - [SMALL_STATE(1041)] = 40159, - [SMALL_STATE(1042)] = 40226, - [SMALL_STATE(1043)] = 40291, - [SMALL_STATE(1044)] = 40356, - [SMALL_STATE(1045)] = 40421, - [SMALL_STATE(1046)] = 40486, - [SMALL_STATE(1047)] = 40555, - [SMALL_STATE(1048)] = 40617, - [SMALL_STATE(1049)] = 40683, - [SMALL_STATE(1050)] = 40751, - [SMALL_STATE(1051)] = 40819, - [SMALL_STATE(1052)] = 40887, - [SMALL_STATE(1053)] = 40955, - [SMALL_STATE(1054)] = 41023, - [SMALL_STATE(1055)] = 41089, - [SMALL_STATE(1056)] = 41155, - [SMALL_STATE(1057)] = 41217, - [SMALL_STATE(1058)] = 41271, - [SMALL_STATE(1059)] = 41324, - [SMALL_STATE(1060)] = 41371, - [SMALL_STATE(1061)] = 41422, - [SMALL_STATE(1062)] = 41475, - [SMALL_STATE(1063)] = 41528, - [SMALL_STATE(1064)] = 41587, - [SMALL_STATE(1065)] = 41638, - [SMALL_STATE(1066)] = 41689, - [SMALL_STATE(1067)] = 41742, - [SMALL_STATE(1068)] = 41789, - [SMALL_STATE(1069)] = 41837, - [SMALL_STATE(1070)] = 41933, - [SMALL_STATE(1071)] = 42029, - [SMALL_STATE(1072)] = 42077, - [SMALL_STATE(1073)] = 42125, - [SMALL_STATE(1074)] = 42173, - [SMALL_STATE(1075)] = 42221, - [SMALL_STATE(1076)] = 42269, - [SMALL_STATE(1077)] = 42317, - [SMALL_STATE(1078)] = 42365, - [SMALL_STATE(1079)] = 42413, - [SMALL_STATE(1080)] = 42461, - [SMALL_STATE(1081)] = 42509, - [SMALL_STATE(1082)] = 42557, - [SMALL_STATE(1083)] = 42605, - [SMALL_STATE(1084)] = 42653, - [SMALL_STATE(1085)] = 42701, - [SMALL_STATE(1086)] = 42749, - [SMALL_STATE(1087)] = 42797, - [SMALL_STATE(1088)] = 42863, - [SMALL_STATE(1089)] = 42933, - [SMALL_STATE(1090)] = 43021, - [SMALL_STATE(1091)] = 43107, - [SMALL_STATE(1092)] = 43155, - [SMALL_STATE(1093)] = 43209, - [SMALL_STATE(1094)] = 43273, - [SMALL_STATE(1095)] = 43321, - [SMALL_STATE(1096)] = 43405, - [SMALL_STATE(1097)] = 43453, - [SMALL_STATE(1098)] = 43549, - [SMALL_STATE(1099)] = 43621, - [SMALL_STATE(1100)] = 43711, - [SMALL_STATE(1101)] = 43761, - [SMALL_STATE(1102)] = 43809, - [SMALL_STATE(1103)] = 43897, - [SMALL_STATE(1104)] = 43957, - [SMALL_STATE(1105)] = 44021, - [SMALL_STATE(1106)] = 44069, - [SMALL_STATE(1107)] = 44117, - [SMALL_STATE(1108)] = 44165, - [SMALL_STATE(1109)] = 44263, - [SMALL_STATE(1110)] = 44329, - [SMALL_STATE(1111)] = 44377, - [SMALL_STATE(1112)] = 44423, - [SMALL_STATE(1113)] = 44499, - [SMALL_STATE(1114)] = 44547, - [SMALL_STATE(1115)] = 44643, - [SMALL_STATE(1116)] = 44691, - [SMALL_STATE(1117)] = 44739, - [SMALL_STATE(1118)] = 44787, - [SMALL_STATE(1119)] = 44835, - [SMALL_STATE(1120)] = 44931, - [SMALL_STATE(1121)] = 44979, - [SMALL_STATE(1122)] = 45027, - [SMALL_STATE(1123)] = 45123, - [SMALL_STATE(1124)] = 45171, - [SMALL_STATE(1125)] = 45219, - [SMALL_STATE(1126)] = 45315, - [SMALL_STATE(1127)] = 45363, - [SMALL_STATE(1128)] = 45459, - [SMALL_STATE(1129)] = 45507, - [SMALL_STATE(1130)] = 45555, - [SMALL_STATE(1131)] = 45603, - [SMALL_STATE(1132)] = 45651, - [SMALL_STATE(1133)] = 45747, - [SMALL_STATE(1134)] = 45795, - [SMALL_STATE(1135)] = 45843, - [SMALL_STATE(1136)] = 45889, - [SMALL_STATE(1137)] = 45937, - [SMALL_STATE(1138)] = 45987, - [SMALL_STATE(1139)] = 46067, - [SMALL_STATE(1140)] = 46115, - [SMALL_STATE(1141)] = 46163, - [SMALL_STATE(1142)] = 46211, - [SMALL_STATE(1143)] = 46259, - [SMALL_STATE(1144)] = 46307, - [SMALL_STATE(1145)] = 46355, - [SMALL_STATE(1146)] = 46403, - [SMALL_STATE(1147)] = 46451, - [SMALL_STATE(1148)] = 46499, - [SMALL_STATE(1149)] = 46547, - [SMALL_STATE(1150)] = 46595, - [SMALL_STATE(1151)] = 46691, - [SMALL_STATE(1152)] = 46783, - [SMALL_STATE(1153)] = 46829, - [SMALL_STATE(1154)] = 46877, - [SMALL_STATE(1155)] = 46923, - [SMALL_STATE(1156)] = 46971, - [SMALL_STATE(1157)] = 47019, - [SMALL_STATE(1158)] = 47115, - [SMALL_STATE(1159)] = 47163, - [SMALL_STATE(1160)] = 47211, - [SMALL_STATE(1161)] = 47259, - [SMALL_STATE(1162)] = 47307, - [SMALL_STATE(1163)] = 47355, - [SMALL_STATE(1164)] = 47403, - [SMALL_STATE(1165)] = 47451, - [SMALL_STATE(1166)] = 47547, - [SMALL_STATE(1167)] = 47597, - [SMALL_STATE(1168)] = 47662, - [SMALL_STATE(1169)] = 47711, - [SMALL_STATE(1170)] = 47810, - [SMALL_STATE(1171)] = 47885, - [SMALL_STATE(1172)] = 47942, - [SMALL_STATE(1173)] = 47991, - [SMALL_STATE(1174)] = 48086, - [SMALL_STATE(1175)] = 48181, - [SMALL_STATE(1176)] = 48276, - [SMALL_STATE(1177)] = 48375, - [SMALL_STATE(1178)] = 48474, - [SMALL_STATE(1179)] = 48539, - [SMALL_STATE(1180)] = 48634, - [SMALL_STATE(1181)] = 48729, - [SMALL_STATE(1182)] = 48824, - [SMALL_STATE(1183)] = 48919, - [SMALL_STATE(1184)] = 49014, - [SMALL_STATE(1185)] = 49109, - [SMALL_STATE(1186)] = 49184, - [SMALL_STATE(1187)] = 49279, - [SMALL_STATE(1188)] = 49344, - [SMALL_STATE(1189)] = 49431, - [SMALL_STATE(1190)] = 49520, - [SMALL_STATE(1191)] = 49591, - [SMALL_STATE(1192)] = 49674, - [SMALL_STATE(1193)] = 49769, - [SMALL_STATE(1194)] = 49816, - [SMALL_STATE(1195)] = 49903, - [SMALL_STATE(1196)] = 49998, - [SMALL_STATE(1197)] = 50083, - [SMALL_STATE(1198)] = 50178, - [SMALL_STATE(1199)] = 50265, - [SMALL_STATE(1200)] = 50360, - [SMALL_STATE(1201)] = 50409, - [SMALL_STATE(1202)] = 50506, - [SMALL_STATE(1203)] = 50575, - [SMALL_STATE(1204)] = 50654, - [SMALL_STATE(1205)] = 50705, - [SMALL_STATE(1206)] = 50752, - [SMALL_STATE(1207)] = 50843, - [SMALL_STATE(1208)] = 50938, - [SMALL_STATE(1209)] = 51033, - [SMALL_STATE(1210)] = 51128, - [SMALL_STATE(1211)] = 51223, - [SMALL_STATE(1212)] = 51276, - [SMALL_STATE(1213)] = 51367, - [SMALL_STATE(1214)] = 51446, - [SMALL_STATE(1215)] = 51511, - [SMALL_STATE(1216)] = 51560, - [SMALL_STATE(1217)] = 51611, - [SMALL_STATE(1218)] = 51680, - [SMALL_STATE(1219)] = 51767, - [SMALL_STATE(1220)] = 51816, - [SMALL_STATE(1221)] = 51901, - [SMALL_STATE(1222)] = 51950, - [SMALL_STATE(1223)] = 52033, - [SMALL_STATE(1224)] = 52128, - [SMALL_STATE(1225)] = 52223, - [SMALL_STATE(1226)] = 52318, - [SMALL_STATE(1227)] = 52389, - [SMALL_STATE(1228)] = 52484, - [SMALL_STATE(1229)] = 52579, - [SMALL_STATE(1230)] = 52628, - [SMALL_STATE(1231)] = 52723, - [SMALL_STATE(1232)] = 52812, - [SMALL_STATE(1233)] = 52907, - [SMALL_STATE(1234)] = 53002, - [SMALL_STATE(1235)] = 53051, - [SMALL_STATE(1236)] = 53147, - [SMALL_STATE(1237)] = 53241, - [SMALL_STATE(1238)] = 53287, - [SMALL_STATE(1239)] = 53385, - [SMALL_STATE(1240)] = 53483, - [SMALL_STATE(1241)] = 53535, - [SMALL_STATE(1242)] = 53585, - [SMALL_STATE(1243)] = 53631, - [SMALL_STATE(1244)] = 53677, - [SMALL_STATE(1245)] = 53723, - [SMALL_STATE(1246)] = 53769, - [SMALL_STATE(1247)] = 53815, - [SMALL_STATE(1248)] = 53867, - [SMALL_STATE(1249)] = 53963, - [SMALL_STATE(1250)] = 54009, - [SMALL_STATE(1251)] = 54055, - [SMALL_STATE(1252)] = 54151, - [SMALL_STATE(1253)] = 54197, - [SMALL_STATE(1254)] = 54243, - [SMALL_STATE(1255)] = 54289, - [SMALL_STATE(1256)] = 54339, - [SMALL_STATE(1257)] = 54387, - [SMALL_STATE(1258)] = 54433, - [SMALL_STATE(1259)] = 54479, - [SMALL_STATE(1260)] = 54531, - [SMALL_STATE(1261)] = 54583, - [SMALL_STATE(1262)] = 54679, - [SMALL_STATE(1263)] = 54729, - [SMALL_STATE(1264)] = 54775, - [SMALL_STATE(1265)] = 54825, - [SMALL_STATE(1266)] = 54921, - [SMALL_STATE(1267)] = 54973, - [SMALL_STATE(1268)] = 55019, - [SMALL_STATE(1269)] = 55065, - [SMALL_STATE(1270)] = 55111, - [SMALL_STATE(1271)] = 55157, - [SMALL_STATE(1272)] = 55253, - [SMALL_STATE(1273)] = 55299, - [SMALL_STATE(1274)] = 55345, - [SMALL_STATE(1275)] = 55441, - [SMALL_STATE(1276)] = 55487, - [SMALL_STATE(1277)] = 55533, - [SMALL_STATE(1278)] = 55579, - [SMALL_STATE(1279)] = 55625, - [SMALL_STATE(1280)] = 55671, - [SMALL_STATE(1281)] = 55719, - [SMALL_STATE(1282)] = 55765, - [SMALL_STATE(1283)] = 55859, - [SMALL_STATE(1284)] = 55905, - [SMALL_STATE(1285)] = 55953, - [SMALL_STATE(1286)] = 56003, - [SMALL_STATE(1287)] = 56099, - [SMALL_STATE(1288)] = 56145, - [SMALL_STATE(1289)] = 56241, - [SMALL_STATE(1290)] = 56337, - [SMALL_STATE(1291)] = 56387, - [SMALL_STATE(1292)] = 56433, - [SMALL_STATE(1293)] = 56529, - [SMALL_STATE(1294)] = 56575, - [SMALL_STATE(1295)] = 56625, - [SMALL_STATE(1296)] = 56671, - [SMALL_STATE(1297)] = 56717, - [SMALL_STATE(1298)] = 56763, - [SMALL_STATE(1299)] = 56861, - [SMALL_STATE(1300)] = 56959, - [SMALL_STATE(1301)] = 57005, - [SMALL_STATE(1302)] = 57103, - [SMALL_STATE(1303)] = 57149, - [SMALL_STATE(1304)] = 57245, - [SMALL_STATE(1305)] = 57291, - [SMALL_STATE(1306)] = 57337, - [SMALL_STATE(1307)] = 57435, - [SMALL_STATE(1308)] = 57481, - [SMALL_STATE(1309)] = 57527, - [SMALL_STATE(1310)] = 57573, - [SMALL_STATE(1311)] = 57621, - [SMALL_STATE(1312)] = 57719, - [SMALL_STATE(1313)] = 57769, - [SMALL_STATE(1314)] = 57815, - [SMALL_STATE(1315)] = 57911, - [SMALL_STATE(1316)] = 57961, - [SMALL_STATE(1317)] = 58011, - [SMALL_STATE(1318)] = 58061, - [SMALL_STATE(1319)] = 58107, - [SMALL_STATE(1320)] = 58153, - [SMALL_STATE(1321)] = 58199, - [SMALL_STATE(1322)] = 58295, - [SMALL_STATE(1323)] = 58345, - [SMALL_STATE(1324)] = 58395, - [SMALL_STATE(1325)] = 58445, - [SMALL_STATE(1326)] = 58491, - [SMALL_STATE(1327)] = 58537, - [SMALL_STATE(1328)] = 58583, - [SMALL_STATE(1329)] = 58629, - [SMALL_STATE(1330)] = 58675, - [SMALL_STATE(1331)] = 58773, - [SMALL_STATE(1332)] = 58819, - [SMALL_STATE(1333)] = 58865, - [SMALL_STATE(1334)] = 58961, - [SMALL_STATE(1335)] = 59057, - [SMALL_STATE(1336)] = 59103, - [SMALL_STATE(1337)] = 59199, - [SMALL_STATE(1338)] = 59245, - [SMALL_STATE(1339)] = 59338, - [SMALL_STATE(1340)] = 59387, - [SMALL_STATE(1341)] = 59482, - [SMALL_STATE(1342)] = 59575, - [SMALL_STATE(1343)] = 59668, - [SMALL_STATE(1344)] = 59763, - [SMALL_STATE(1345)] = 59856, - [SMALL_STATE(1346)] = 59949, - [SMALL_STATE(1347)] = 60042, - [SMALL_STATE(1348)] = 60091, - [SMALL_STATE(1349)] = 60184, - [SMALL_STATE(1350)] = 60277, - [SMALL_STATE(1351)] = 60370, - [SMALL_STATE(1352)] = 60463, - [SMALL_STATE(1353)] = 60558, - [SMALL_STATE(1354)] = 60653, - [SMALL_STATE(1355)] = 60746, - [SMALL_STATE(1356)] = 60841, - [SMALL_STATE(1357)] = 60936, - [SMALL_STATE(1358)] = 61031, - [SMALL_STATE(1359)] = 61080, - [SMALL_STATE(1360)] = 61175, - [SMALL_STATE(1361)] = 61270, - [SMALL_STATE(1362)] = 61365, - [SMALL_STATE(1363)] = 61460, - [SMALL_STATE(1364)] = 61549, - [SMALL_STATE(1365)] = 61626, - [SMALL_STATE(1366)] = 61689, - [SMALL_STATE(1367)] = 61782, - [SMALL_STATE(1368)] = 61875, - [SMALL_STATE(1369)] = 61970, - [SMALL_STATE(1370)] = 62065, - [SMALL_STATE(1371)] = 62160, - [SMALL_STATE(1372)] = 62255, - [SMALL_STATE(1373)] = 62348, - [SMALL_STATE(1374)] = 62443, - [SMALL_STATE(1375)] = 62538, - [SMALL_STATE(1376)] = 62633, - [SMALL_STATE(1377)] = 62728, - [SMALL_STATE(1378)] = 62795, - [SMALL_STATE(1379)] = 62880, - [SMALL_STATE(1380)] = 62963, - [SMALL_STATE(1381)] = 63044, - [SMALL_STATE(1382)] = 63139, - [SMALL_STATE(1383)] = 63208, - [SMALL_STATE(1384)] = 63295, - [SMALL_STATE(1385)] = 63380, - [SMALL_STATE(1386)] = 63443, - [SMALL_STATE(1387)] = 63516, - [SMALL_STATE(1388)] = 63611, - [SMALL_STATE(1389)] = 63706, - [SMALL_STATE(1390)] = 63801, - [SMALL_STATE(1391)] = 63894, - [SMALL_STATE(1392)] = 63987, - [SMALL_STATE(1393)] = 64082, - [SMALL_STATE(1394)] = 64177, - [SMALL_STATE(1395)] = 64272, - [SMALL_STATE(1396)] = 64367, - [SMALL_STATE(1397)] = 64462, - [SMALL_STATE(1398)] = 64557, - [SMALL_STATE(1399)] = 64650, - [SMALL_STATE(1400)] = 64743, - [SMALL_STATE(1401)] = 64836, - [SMALL_STATE(1402)] = 64931, - [SMALL_STATE(1403)] = 65024, - [SMALL_STATE(1404)] = 65116, - [SMALL_STATE(1405)] = 65200, - [SMALL_STATE(1406)] = 65292, - [SMALL_STATE(1407)] = 65386, - [SMALL_STATE(1408)] = 65478, - [SMALL_STATE(1409)] = 65528, - [SMALL_STATE(1410)] = 65620, - [SMALL_STATE(1411)] = 65712, - [SMALL_STATE(1412)] = 65804, - [SMALL_STATE(1413)] = 65896, - [SMALL_STATE(1414)] = 65984, - [SMALL_STATE(1415)] = 66060, - [SMALL_STATE(1416)] = 66122, - [SMALL_STATE(1417)] = 66188, - [SMALL_STATE(1418)] = 66272, - [SMALL_STATE(1419)] = 66354, - [SMALL_STATE(1420)] = 66434, - [SMALL_STATE(1421)] = 66526, - [SMALL_STATE(1422)] = 66594, - [SMALL_STATE(1423)] = 66680, - [SMALL_STATE(1424)] = 66742, - [SMALL_STATE(1425)] = 66814, - [SMALL_STATE(1426)] = 66906, - [SMALL_STATE(1427)] = 66998, - [SMALL_STATE(1428)] = 67090, - [SMALL_STATE(1429)] = 67182, - [SMALL_STATE(1430)] = 67274, - [SMALL_STATE(1431)] = 67366, - [SMALL_STATE(1432)] = 67416, - [SMALL_STATE(1433)] = 67466, - [SMALL_STATE(1434)] = 67516, - [SMALL_STATE(1435)] = 67608, - [SMALL_STATE(1436)] = 67700, - [SMALL_STATE(1437)] = 67792, - [SMALL_STATE(1438)] = 67884, - [SMALL_STATE(1439)] = 67976, - [SMALL_STATE(1440)] = 68068, - [SMALL_STATE(1441)] = 68113, - [SMALL_STATE(1442)] = 68158, - [SMALL_STATE(1443)] = 68207, - [SMALL_STATE(1444)] = 68256, - [SMALL_STATE(1445)] = 68305, - [SMALL_STATE(1446)] = 68354, - [SMALL_STATE(1447)] = 68443, - [SMALL_STATE(1448)] = 68532, - [SMALL_STATE(1449)] = 68616, - [SMALL_STATE(1450)] = 68700, - [SMALL_STATE(1451)] = 68784, - [SMALL_STATE(1452)] = 68868, - [SMALL_STATE(1453)] = 68952, - [SMALL_STATE(1454)] = 69036, - [SMALL_STATE(1455)] = 69120, - [SMALL_STATE(1456)] = 69196, - [SMALL_STATE(1457)] = 69271, - [SMALL_STATE(1458)] = 69346, - [SMALL_STATE(1459)] = 69421, - [SMALL_STATE(1460)] = 69496, - [SMALL_STATE(1461)] = 69571, - [SMALL_STATE(1462)] = 69646, - [SMALL_STATE(1463)] = 69721, - [SMALL_STATE(1464)] = 69796, - [SMALL_STATE(1465)] = 69871, - [SMALL_STATE(1466)] = 69946, - [SMALL_STATE(1467)] = 70021, - [SMALL_STATE(1468)] = 70096, - [SMALL_STATE(1469)] = 70171, - [SMALL_STATE(1470)] = 70246, - [SMALL_STATE(1471)] = 70321, - [SMALL_STATE(1472)] = 70396, - [SMALL_STATE(1473)] = 70471, - [SMALL_STATE(1474)] = 70546, - [SMALL_STATE(1475)] = 70621, - [SMALL_STATE(1476)] = 70696, - [SMALL_STATE(1477)] = 70771, - [SMALL_STATE(1478)] = 70846, - [SMALL_STATE(1479)] = 70921, - [SMALL_STATE(1480)] = 70984, - [SMALL_STATE(1481)] = 71039, - [SMALL_STATE(1482)] = 71094, - [SMALL_STATE(1483)] = 71144, - [SMALL_STATE(1484)] = 71200, - [SMALL_STATE(1485)] = 71254, - [SMALL_STATE(1486)] = 71310, - [SMALL_STATE(1487)] = 71364, - [SMALL_STATE(1488)] = 71418, - [SMALL_STATE(1489)] = 71474, - [SMALL_STATE(1490)] = 71528, - [SMALL_STATE(1491)] = 71582, - [SMALL_STATE(1492)] = 71638, - [SMALL_STATE(1493)] = 71692, - [SMALL_STATE(1494)] = 71748, - [SMALL_STATE(1495)] = 71804, - [SMALL_STATE(1496)] = 71860, - [SMALL_STATE(1497)] = 71914, - [SMALL_STATE(1498)] = 71963, - [SMALL_STATE(1499)] = 72012, - [SMALL_STATE(1500)] = 72061, - [SMALL_STATE(1501)] = 72112, - [SMALL_STATE(1502)] = 72161, - [SMALL_STATE(1503)] = 72210, - [SMALL_STATE(1504)] = 72259, - [SMALL_STATE(1505)] = 72308, - [SMALL_STATE(1506)] = 72356, - [SMALL_STATE(1507)] = 72402, - [SMALL_STATE(1508)] = 72460, - [SMALL_STATE(1509)] = 72505, - [SMALL_STATE(1510)] = 72558, - [SMALL_STATE(1511)] = 72605, - [SMALL_STATE(1512)] = 72648, - [SMALL_STATE(1513)] = 72691, - [SMALL_STATE(1514)] = 72734, - [SMALL_STATE(1515)] = 72775, - [SMALL_STATE(1516)] = 72828, - [SMALL_STATE(1517)] = 72873, - [SMALL_STATE(1518)] = 72918, - [SMALL_STATE(1519)] = 72956, - [SMALL_STATE(1520)] = 72994, - [SMALL_STATE(1521)] = 73020, - [SMALL_STATE(1522)] = 73046, - [SMALL_STATE(1523)] = 73084, - [SMALL_STATE(1524)] = 73114, - [SMALL_STATE(1525)] = 73152, - [SMALL_STATE(1526)] = 73190, - [SMALL_STATE(1527)] = 73228, - [SMALL_STATE(1528)] = 73266, - [SMALL_STATE(1529)] = 73289, - [SMALL_STATE(1530)] = 73312, - [SMALL_STATE(1531)] = 73335, - [SMALL_STATE(1532)] = 73358, - [SMALL_STATE(1533)] = 73381, - [SMALL_STATE(1534)] = 73404, - [SMALL_STATE(1535)] = 73427, - [SMALL_STATE(1536)] = 73450, - [SMALL_STATE(1537)] = 73473, - [SMALL_STATE(1538)] = 73498, - [SMALL_STATE(1539)] = 73521, - [SMALL_STATE(1540)] = 73550, - [SMALL_STATE(1541)] = 73573, - [SMALL_STATE(1542)] = 73596, - [SMALL_STATE(1543)] = 73641, - [SMALL_STATE(1544)] = 73664, - [SMALL_STATE(1545)] = 73687, - [SMALL_STATE(1546)] = 73710, - [SMALL_STATE(1547)] = 73733, - [SMALL_STATE(1548)] = 73756, - [SMALL_STATE(1549)] = 73779, - [SMALL_STATE(1550)] = 73802, - [SMALL_STATE(1551)] = 73825, - [SMALL_STATE(1552)] = 73854, - [SMALL_STATE(1553)] = 73877, - [SMALL_STATE(1554)] = 73900, - [SMALL_STATE(1555)] = 73923, - [SMALL_STATE(1556)] = 73946, - [SMALL_STATE(1557)] = 73969, - [SMALL_STATE(1558)] = 73992, - [SMALL_STATE(1559)] = 74015, - [SMALL_STATE(1560)] = 74038, - [SMALL_STATE(1561)] = 74061, - [SMALL_STATE(1562)] = 74084, - [SMALL_STATE(1563)] = 74107, - [SMALL_STATE(1564)] = 74143, - [SMALL_STATE(1565)] = 74165, - [SMALL_STATE(1566)] = 74187, - [SMALL_STATE(1567)] = 74215, - [SMALL_STATE(1568)] = 74237, - [SMALL_STATE(1569)] = 74259, - [SMALL_STATE(1570)] = 74281, - [SMALL_STATE(1571)] = 74323, - [SMALL_STATE(1572)] = 74365, - [SMALL_STATE(1573)] = 74403, - [SMALL_STATE(1574)] = 74443, - [SMALL_STATE(1575)] = 74483, - [SMALL_STATE(1576)] = 74521, - [SMALL_STATE(1577)] = 74563, - [SMALL_STATE(1578)] = 74585, - [SMALL_STATE(1579)] = 74607, - [SMALL_STATE(1580)] = 74629, - [SMALL_STATE(1581)] = 74669, - [SMALL_STATE(1582)] = 74709, - [SMALL_STATE(1583)] = 74751, - [SMALL_STATE(1584)] = 74793, - [SMALL_STATE(1585)] = 74835, - [SMALL_STATE(1586)] = 74868, - [SMALL_STATE(1587)] = 74889, - [SMALL_STATE(1588)] = 74922, - [SMALL_STATE(1589)] = 74955, - [SMALL_STATE(1590)] = 74976, - [SMALL_STATE(1591)] = 75009, - [SMALL_STATE(1592)] = 75042, - [SMALL_STATE(1593)] = 75063, - [SMALL_STATE(1594)] = 75084, - [SMALL_STATE(1595)] = 75105, - [SMALL_STATE(1596)] = 75138, - [SMALL_STATE(1597)] = 75159, - [SMALL_STATE(1598)] = 75180, - [SMALL_STATE(1599)] = 75213, - [SMALL_STATE(1600)] = 75250, - [SMALL_STATE(1601)] = 75271, - [SMALL_STATE(1602)] = 75292, - [SMALL_STATE(1603)] = 75325, - [SMALL_STATE(1604)] = 75358, - [SMALL_STATE(1605)] = 75391, - [SMALL_STATE(1606)] = 75424, - [SMALL_STATE(1607)] = 75463, - [SMALL_STATE(1608)] = 75484, - [SMALL_STATE(1609)] = 75505, - [SMALL_STATE(1610)] = 75542, - [SMALL_STATE(1611)] = 75575, - [SMALL_STATE(1612)] = 75608, - [SMALL_STATE(1613)] = 75641, - [SMALL_STATE(1614)] = 75674, - [SMALL_STATE(1615)] = 75707, - [SMALL_STATE(1616)] = 75740, - [SMALL_STATE(1617)] = 75779, - [SMALL_STATE(1618)] = 75812, - [SMALL_STATE(1619)] = 75845, - [SMALL_STATE(1620)] = 75878, - [SMALL_STATE(1621)] = 75911, - [SMALL_STATE(1622)] = 75944, - [SMALL_STATE(1623)] = 75977, - [SMALL_STATE(1624)] = 76010, - [SMALL_STATE(1625)] = 76040, - [SMALL_STATE(1626)] = 76070, - [SMALL_STATE(1627)] = 76100, - [SMALL_STATE(1628)] = 76120, - [SMALL_STATE(1629)] = 76150, - [SMALL_STATE(1630)] = 76180, - [SMALL_STATE(1631)] = 76210, - [SMALL_STATE(1632)] = 76240, - [SMALL_STATE(1633)] = 76270, - [SMALL_STATE(1634)] = 76300, - [SMALL_STATE(1635)] = 76330, - [SMALL_STATE(1636)] = 76360, - [SMALL_STATE(1637)] = 76390, - [SMALL_STATE(1638)] = 76410, - [SMALL_STATE(1639)] = 76440, - [SMALL_STATE(1640)] = 76470, - [SMALL_STATE(1641)] = 76500, - [SMALL_STATE(1642)] = 76520, - [SMALL_STATE(1643)] = 76550, - [SMALL_STATE(1644)] = 76580, - [SMALL_STATE(1645)] = 76600, - [SMALL_STATE(1646)] = 76630, - [SMALL_STATE(1647)] = 76650, - [SMALL_STATE(1648)] = 76670, - [SMALL_STATE(1649)] = 76700, - [SMALL_STATE(1650)] = 76730, - [SMALL_STATE(1651)] = 76760, - [SMALL_STATE(1652)] = 76790, - [SMALL_STATE(1653)] = 76820, - [SMALL_STATE(1654)] = 76850, - [SMALL_STATE(1655)] = 76880, - [SMALL_STATE(1656)] = 76910, - [SMALL_STATE(1657)] = 76937, - [SMALL_STATE(1658)] = 76970, - [SMALL_STATE(1659)] = 77003, - [SMALL_STATE(1660)] = 77036, - [SMALL_STATE(1661)] = 77069, - [SMALL_STATE(1662)] = 77099, - [SMALL_STATE(1663)] = 77129, - [SMALL_STATE(1664)] = 77159, - [SMALL_STATE(1665)] = 77189, - [SMALL_STATE(1666)] = 77219, - [SMALL_STATE(1667)] = 77249, - [SMALL_STATE(1668)] = 77279, - [SMALL_STATE(1669)] = 77309, - [SMALL_STATE(1670)] = 77336, - [SMALL_STATE(1671)] = 77363, - [SMALL_STATE(1672)] = 77390, - [SMALL_STATE(1673)] = 77415, - [SMALL_STATE(1674)] = 77440, - [SMALL_STATE(1675)] = 77465, - [SMALL_STATE(1676)] = 77492, - [SMALL_STATE(1677)] = 77519, - [SMALL_STATE(1678)] = 77546, - [SMALL_STATE(1679)] = 77573, - [SMALL_STATE(1680)] = 77600, - [SMALL_STATE(1681)] = 77627, - [SMALL_STATE(1682)] = 77654, - [SMALL_STATE(1683)] = 77681, - [SMALL_STATE(1684)] = 77708, - [SMALL_STATE(1685)] = 77735, - [SMALL_STATE(1686)] = 77762, - [SMALL_STATE(1687)] = 77789, - [SMALL_STATE(1688)] = 77816, - [SMALL_STATE(1689)] = 77843, - [SMALL_STATE(1690)] = 77870, - [SMALL_STATE(1691)] = 77897, - [SMALL_STATE(1692)] = 77924, - [SMALL_STATE(1693)] = 77950, - [SMALL_STATE(1694)] = 77976, - [SMALL_STATE(1695)] = 77999, - [SMALL_STATE(1696)] = 78016, - [SMALL_STATE(1697)] = 78039, - [SMALL_STATE(1698)] = 78060, - [SMALL_STATE(1699)] = 78083, - [SMALL_STATE(1700)] = 78106, - [SMALL_STATE(1701)] = 78127, - [SMALL_STATE(1702)] = 78148, - [SMALL_STATE(1703)] = 78169, - [SMALL_STATE(1704)] = 78192, - [SMALL_STATE(1705)] = 78211, - [SMALL_STATE(1706)] = 78230, - [SMALL_STATE(1707)] = 78251, - [SMALL_STATE(1708)] = 78274, - [SMALL_STATE(1709)] = 78295, - [SMALL_STATE(1710)] = 78316, - [SMALL_STATE(1711)] = 78329, - [SMALL_STATE(1712)] = 78344, - [SMALL_STATE(1713)] = 78365, - [SMALL_STATE(1714)] = 78388, - [SMALL_STATE(1715)] = 78401, - [SMALL_STATE(1716)] = 78422, - [SMALL_STATE(1717)] = 78445, - [SMALL_STATE(1718)] = 78466, - [SMALL_STATE(1719)] = 78481, - [SMALL_STATE(1720)] = 78494, - [SMALL_STATE(1721)] = 78517, - [SMALL_STATE(1722)] = 78530, - [SMALL_STATE(1723)] = 78551, - [SMALL_STATE(1724)] = 78574, - [SMALL_STATE(1725)] = 78595, - [SMALL_STATE(1726)] = 78608, - [SMALL_STATE(1727)] = 78631, - [SMALL_STATE(1728)] = 78652, - [SMALL_STATE(1729)] = 78672, - [SMALL_STATE(1730)] = 78684, - [SMALL_STATE(1731)] = 78702, - [SMALL_STATE(1732)] = 78722, - [SMALL_STATE(1733)] = 78742, - [SMALL_STATE(1734)] = 78762, - [SMALL_STATE(1735)] = 78780, - [SMALL_STATE(1736)] = 78792, - [SMALL_STATE(1737)] = 78812, - [SMALL_STATE(1738)] = 78826, - [SMALL_STATE(1739)] = 78838, - [SMALL_STATE(1740)] = 78856, - [SMALL_STATE(1741)] = 78868, - [SMALL_STATE(1742)] = 78880, - [SMALL_STATE(1743)] = 78892, - [SMALL_STATE(1744)] = 78904, - [SMALL_STATE(1745)] = 78916, - [SMALL_STATE(1746)] = 78934, - [SMALL_STATE(1747)] = 78952, - [SMALL_STATE(1748)] = 78972, - [SMALL_STATE(1749)] = 78984, - [SMALL_STATE(1750)] = 79002, - [SMALL_STATE(1751)] = 79020, - [SMALL_STATE(1752)] = 79032, - [SMALL_STATE(1753)] = 79044, - [SMALL_STATE(1754)] = 79062, - [SMALL_STATE(1755)] = 79080, - [SMALL_STATE(1756)] = 79098, - [SMALL_STATE(1757)] = 79116, - [SMALL_STATE(1758)] = 79134, - [SMALL_STATE(1759)] = 79146, - [SMALL_STATE(1760)] = 79164, - [SMALL_STATE(1761)] = 79182, - [SMALL_STATE(1762)] = 79200, - [SMALL_STATE(1763)] = 79218, - [SMALL_STATE(1764)] = 79236, - [SMALL_STATE(1765)] = 79254, - [SMALL_STATE(1766)] = 79272, - [SMALL_STATE(1767)] = 79284, - [SMALL_STATE(1768)] = 79302, - [SMALL_STATE(1769)] = 79314, - [SMALL_STATE(1770)] = 79332, - [SMALL_STATE(1771)] = 79350, - [SMALL_STATE(1772)] = 79370, - [SMALL_STATE(1773)] = 79388, - [SMALL_STATE(1774)] = 79406, - [SMALL_STATE(1775)] = 79425, - [SMALL_STATE(1776)] = 79444, - [SMALL_STATE(1777)] = 79463, - [SMALL_STATE(1778)] = 79482, - [SMALL_STATE(1779)] = 79493, - [SMALL_STATE(1780)] = 79510, - [SMALL_STATE(1781)] = 79527, - [SMALL_STATE(1782)] = 79540, - [SMALL_STATE(1783)] = 79551, - [SMALL_STATE(1784)] = 79570, - [SMALL_STATE(1785)] = 79581, - [SMALL_STATE(1786)] = 79600, - [SMALL_STATE(1787)] = 79619, - [SMALL_STATE(1788)] = 79638, - [SMALL_STATE(1789)] = 79649, - [SMALL_STATE(1790)] = 79668, - [SMALL_STATE(1791)] = 79679, - [SMALL_STATE(1792)] = 79690, - [SMALL_STATE(1793)] = 79701, - [SMALL_STATE(1794)] = 79720, - [SMALL_STATE(1795)] = 79731, - [SMALL_STATE(1796)] = 79750, - [SMALL_STATE(1797)] = 79761, - [SMALL_STATE(1798)] = 79772, - [SMALL_STATE(1799)] = 79785, - [SMALL_STATE(1800)] = 79796, - [SMALL_STATE(1801)] = 79815, - [SMALL_STATE(1802)] = 79834, - [SMALL_STATE(1803)] = 79845, - [SMALL_STATE(1804)] = 79856, - [SMALL_STATE(1805)] = 79875, - [SMALL_STATE(1806)] = 79886, - [SMALL_STATE(1807)] = 79897, - [SMALL_STATE(1808)] = 79916, - [SMALL_STATE(1809)] = 79929, - [SMALL_STATE(1810)] = 79948, - [SMALL_STATE(1811)] = 79959, - [SMALL_STATE(1812)] = 79978, - [SMALL_STATE(1813)] = 79997, - [SMALL_STATE(1814)] = 80012, - [SMALL_STATE(1815)] = 80023, - [SMALL_STATE(1816)] = 80042, - [SMALL_STATE(1817)] = 80061, - [SMALL_STATE(1818)] = 80072, - [SMALL_STATE(1819)] = 80083, - [SMALL_STATE(1820)] = 80094, - [SMALL_STATE(1821)] = 80113, - [SMALL_STATE(1822)] = 80132, - [SMALL_STATE(1823)] = 80143, - [SMALL_STATE(1824)] = 80154, - [SMALL_STATE(1825)] = 80165, - [SMALL_STATE(1826)] = 80176, - [SMALL_STATE(1827)] = 80187, - [SMALL_STATE(1828)] = 80206, - [SMALL_STATE(1829)] = 80223, - [SMALL_STATE(1830)] = 80242, - [SMALL_STATE(1831)] = 80261, - [SMALL_STATE(1832)] = 80276, - [SMALL_STATE(1833)] = 80295, - [SMALL_STATE(1834)] = 80314, - [SMALL_STATE(1835)] = 80325, - [SMALL_STATE(1836)] = 80336, - [SMALL_STATE(1837)] = 80347, - [SMALL_STATE(1838)] = 80358, - [SMALL_STATE(1839)] = 80369, - [SMALL_STATE(1840)] = 80380, - [SMALL_STATE(1841)] = 80391, - [SMALL_STATE(1842)] = 80410, - [SMALL_STATE(1843)] = 80429, - [SMALL_STATE(1844)] = 80440, - [SMALL_STATE(1845)] = 80455, - [SMALL_STATE(1846)] = 80466, - [SMALL_STATE(1847)] = 80477, - [SMALL_STATE(1848)] = 80496, - [SMALL_STATE(1849)] = 80515, - [SMALL_STATE(1850)] = 80526, - [SMALL_STATE(1851)] = 80542, - [SMALL_STATE(1852)] = 80552, - [SMALL_STATE(1853)] = 80568, - [SMALL_STATE(1854)] = 80578, - [SMALL_STATE(1855)] = 80588, - [SMALL_STATE(1856)] = 80604, - [SMALL_STATE(1857)] = 80618, - [SMALL_STATE(1858)] = 80632, - [SMALL_STATE(1859)] = 80648, - [SMALL_STATE(1860)] = 80662, - [SMALL_STATE(1861)] = 80676, - [SMALL_STATE(1862)] = 80690, - [SMALL_STATE(1863)] = 80706, - [SMALL_STATE(1864)] = 80720, - [SMALL_STATE(1865)] = 80734, - [SMALL_STATE(1866)] = 80748, - [SMALL_STATE(1867)] = 80764, - [SMALL_STATE(1868)] = 80774, - [SMALL_STATE(1869)] = 80790, - [SMALL_STATE(1870)] = 80804, - [SMALL_STATE(1871)] = 80818, - [SMALL_STATE(1872)] = 80834, - [SMALL_STATE(1873)] = 80848, - [SMALL_STATE(1874)] = 80862, - [SMALL_STATE(1875)] = 80878, - [SMALL_STATE(1876)] = 80892, - [SMALL_STATE(1877)] = 80908, - [SMALL_STATE(1878)] = 80924, - [SMALL_STATE(1879)] = 80940, - [SMALL_STATE(1880)] = 80956, - [SMALL_STATE(1881)] = 80972, - [SMALL_STATE(1882)] = 80986, - [SMALL_STATE(1883)] = 81002, - [SMALL_STATE(1884)] = 81014, - [SMALL_STATE(1885)] = 81030, - [SMALL_STATE(1886)] = 81042, - [SMALL_STATE(1887)] = 81056, - [SMALL_STATE(1888)] = 81072, - [SMALL_STATE(1889)] = 81088, - [SMALL_STATE(1890)] = 81102, - [SMALL_STATE(1891)] = 81116, - [SMALL_STATE(1892)] = 81132, - [SMALL_STATE(1893)] = 81148, - [SMALL_STATE(1894)] = 81162, - [SMALL_STATE(1895)] = 81178, - [SMALL_STATE(1896)] = 81194, - [SMALL_STATE(1897)] = 81210, - [SMALL_STATE(1898)] = 81226, - [SMALL_STATE(1899)] = 81240, - [SMALL_STATE(1900)] = 81254, - [SMALL_STATE(1901)] = 81270, - [SMALL_STATE(1902)] = 81286, - [SMALL_STATE(1903)] = 81296, - [SMALL_STATE(1904)] = 81310, - [SMALL_STATE(1905)] = 81324, - [SMALL_STATE(1906)] = 81340, - [SMALL_STATE(1907)] = 81354, - [SMALL_STATE(1908)] = 81368, - [SMALL_STATE(1909)] = 81384, - [SMALL_STATE(1910)] = 81400, - [SMALL_STATE(1911)] = 81416, - [SMALL_STATE(1912)] = 81430, - [SMALL_STATE(1913)] = 81444, - [SMALL_STATE(1914)] = 81458, - [SMALL_STATE(1915)] = 81472, - [SMALL_STATE(1916)] = 81486, - [SMALL_STATE(1917)] = 81502, - [SMALL_STATE(1918)] = 81518, - [SMALL_STATE(1919)] = 81532, - [SMALL_STATE(1920)] = 81542, - [SMALL_STATE(1921)] = 81556, - [SMALL_STATE(1922)] = 81572, - [SMALL_STATE(1923)] = 81588, - [SMALL_STATE(1924)] = 81604, - [SMALL_STATE(1925)] = 81620, - [SMALL_STATE(1926)] = 81634, - [SMALL_STATE(1927)] = 81650, - [SMALL_STATE(1928)] = 81666, - [SMALL_STATE(1929)] = 81680, - [SMALL_STATE(1930)] = 81696, - [SMALL_STATE(1931)] = 81710, - [SMALL_STATE(1932)] = 81724, - [SMALL_STATE(1933)] = 81740, - [SMALL_STATE(1934)] = 81756, - [SMALL_STATE(1935)] = 81770, - [SMALL_STATE(1936)] = 81784, - [SMALL_STATE(1937)] = 81794, - [SMALL_STATE(1938)] = 81810, - [SMALL_STATE(1939)] = 81824, - [SMALL_STATE(1940)] = 81840, - [SMALL_STATE(1941)] = 81854, - [SMALL_STATE(1942)] = 81868, - [SMALL_STATE(1943)] = 81882, - [SMALL_STATE(1944)] = 81896, - [SMALL_STATE(1945)] = 81912, - [SMALL_STATE(1946)] = 81928, - [SMALL_STATE(1947)] = 81944, - [SMALL_STATE(1948)] = 81960, - [SMALL_STATE(1949)] = 81976, - [SMALL_STATE(1950)] = 81990, - [SMALL_STATE(1951)] = 82004, - [SMALL_STATE(1952)] = 82018, - [SMALL_STATE(1953)] = 82034, - [SMALL_STATE(1954)] = 82048, - [SMALL_STATE(1955)] = 82064, - [SMALL_STATE(1956)] = 82078, - [SMALL_STATE(1957)] = 82092, - [SMALL_STATE(1958)] = 82102, - [SMALL_STATE(1959)] = 82118, - [SMALL_STATE(1960)] = 82134, - [SMALL_STATE(1961)] = 82150, - [SMALL_STATE(1962)] = 82166, - [SMALL_STATE(1963)] = 82180, - [SMALL_STATE(1964)] = 82194, - [SMALL_STATE(1965)] = 82208, - [SMALL_STATE(1966)] = 82222, - [SMALL_STATE(1967)] = 82236, - [SMALL_STATE(1968)] = 82250, - [SMALL_STATE(1969)] = 82264, - [SMALL_STATE(1970)] = 82278, - [SMALL_STATE(1971)] = 82294, - [SMALL_STATE(1972)] = 82304, - [SMALL_STATE(1973)] = 82320, - [SMALL_STATE(1974)] = 82336, - [SMALL_STATE(1975)] = 82350, - [SMALL_STATE(1976)] = 82366, - [SMALL_STATE(1977)] = 82382, - [SMALL_STATE(1978)] = 82395, - [SMALL_STATE(1979)] = 82408, - [SMALL_STATE(1980)] = 82421, - [SMALL_STATE(1981)] = 82434, - [SMALL_STATE(1982)] = 82447, - [SMALL_STATE(1983)] = 82460, - [SMALL_STATE(1984)] = 82473, - [SMALL_STATE(1985)] = 82486, - [SMALL_STATE(1986)] = 82499, - [SMALL_STATE(1987)] = 82512, - [SMALL_STATE(1988)] = 82525, - [SMALL_STATE(1989)] = 82538, - [SMALL_STATE(1990)] = 82551, - [SMALL_STATE(1991)] = 82564, - [SMALL_STATE(1992)] = 82577, - [SMALL_STATE(1993)] = 82590, - [SMALL_STATE(1994)] = 82603, - [SMALL_STATE(1995)] = 82616, - [SMALL_STATE(1996)] = 82629, - [SMALL_STATE(1997)] = 82642, - [SMALL_STATE(1998)] = 82655, - [SMALL_STATE(1999)] = 82668, - [SMALL_STATE(2000)] = 82681, - [SMALL_STATE(2001)] = 82694, - [SMALL_STATE(2002)] = 82707, - [SMALL_STATE(2003)] = 82718, - [SMALL_STATE(2004)] = 82731, - [SMALL_STATE(2005)] = 82744, - [SMALL_STATE(2006)] = 82753, - [SMALL_STATE(2007)] = 82766, - [SMALL_STATE(2008)] = 82775, - [SMALL_STATE(2009)] = 82786, - [SMALL_STATE(2010)] = 82799, - [SMALL_STATE(2011)] = 82812, - [SMALL_STATE(2012)] = 82825, - [SMALL_STATE(2013)] = 82838, - [SMALL_STATE(2014)] = 82851, - [SMALL_STATE(2015)] = 82862, - [SMALL_STATE(2016)] = 82875, - [SMALL_STATE(2017)] = 82888, - [SMALL_STATE(2018)] = 82901, - [SMALL_STATE(2019)] = 82914, - [SMALL_STATE(2020)] = 82927, - [SMALL_STATE(2021)] = 82940, - [SMALL_STATE(2022)] = 82953, - [SMALL_STATE(2023)] = 82964, - [SMALL_STATE(2024)] = 82977, - [SMALL_STATE(2025)] = 82990, - [SMALL_STATE(2026)] = 83003, - [SMALL_STATE(2027)] = 83016, - [SMALL_STATE(2028)] = 83029, - [SMALL_STATE(2029)] = 83042, - [SMALL_STATE(2030)] = 83055, - [SMALL_STATE(2031)] = 83068, - [SMALL_STATE(2032)] = 83077, - [SMALL_STATE(2033)] = 83086, - [SMALL_STATE(2034)] = 83099, - [SMALL_STATE(2035)] = 83112, - [SMALL_STATE(2036)] = 83125, - [SMALL_STATE(2037)] = 83138, - [SMALL_STATE(2038)] = 83151, - [SMALL_STATE(2039)] = 83164, - [SMALL_STATE(2040)] = 83173, - [SMALL_STATE(2041)] = 83186, - [SMALL_STATE(2042)] = 83199, - [SMALL_STATE(2043)] = 83208, - [SMALL_STATE(2044)] = 83217, - [SMALL_STATE(2045)] = 83226, - [SMALL_STATE(2046)] = 83239, - [SMALL_STATE(2047)] = 83252, - [SMALL_STATE(2048)] = 83263, - [SMALL_STATE(2049)] = 83276, - [SMALL_STATE(2050)] = 83289, - [SMALL_STATE(2051)] = 83302, - [SMALL_STATE(2052)] = 83315, - [SMALL_STATE(2053)] = 83328, - [SMALL_STATE(2054)] = 83341, - [SMALL_STATE(2055)] = 83352, - [SMALL_STATE(2056)] = 83365, - [SMALL_STATE(2057)] = 83378, - [SMALL_STATE(2058)] = 83391, - [SMALL_STATE(2059)] = 83404, - [SMALL_STATE(2060)] = 83417, - [SMALL_STATE(2061)] = 83430, - [SMALL_STATE(2062)] = 83443, - [SMALL_STATE(2063)] = 83456, - [SMALL_STATE(2064)] = 83465, - [SMALL_STATE(2065)] = 83478, - [SMALL_STATE(2066)] = 83489, - [SMALL_STATE(2067)] = 83500, - [SMALL_STATE(2068)] = 83513, - [SMALL_STATE(2069)] = 83524, - [SMALL_STATE(2070)] = 83535, - [SMALL_STATE(2071)] = 83548, - [SMALL_STATE(2072)] = 83561, - [SMALL_STATE(2073)] = 83574, - [SMALL_STATE(2074)] = 83587, - [SMALL_STATE(2075)] = 83600, - [SMALL_STATE(2076)] = 83613, - [SMALL_STATE(2077)] = 83622, - [SMALL_STATE(2078)] = 83631, - [SMALL_STATE(2079)] = 83644, - [SMALL_STATE(2080)] = 83657, - [SMALL_STATE(2081)] = 83670, - [SMALL_STATE(2082)] = 83681, - [SMALL_STATE(2083)] = 83694, - [SMALL_STATE(2084)] = 83703, - [SMALL_STATE(2085)] = 83712, - [SMALL_STATE(2086)] = 83725, - [SMALL_STATE(2087)] = 83734, - [SMALL_STATE(2088)] = 83747, - [SMALL_STATE(2089)] = 83756, - [SMALL_STATE(2090)] = 83769, - [SMALL_STATE(2091)] = 83782, - [SMALL_STATE(2092)] = 83793, - [SMALL_STATE(2093)] = 83804, - [SMALL_STATE(2094)] = 83817, - [SMALL_STATE(2095)] = 83828, - [SMALL_STATE(2096)] = 83841, - [SMALL_STATE(2097)] = 83852, - [SMALL_STATE(2098)] = 83865, - [SMALL_STATE(2099)] = 83874, - [SMALL_STATE(2100)] = 83887, - [SMALL_STATE(2101)] = 83898, - [SMALL_STATE(2102)] = 83911, - [SMALL_STATE(2103)] = 83924, - [SMALL_STATE(2104)] = 83935, - [SMALL_STATE(2105)] = 83948, - [SMALL_STATE(2106)] = 83957, - [SMALL_STATE(2107)] = 83970, - [SMALL_STATE(2108)] = 83983, - [SMALL_STATE(2109)] = 83996, - [SMALL_STATE(2110)] = 84009, - [SMALL_STATE(2111)] = 84022, - [SMALL_STATE(2112)] = 84035, - [SMALL_STATE(2113)] = 84048, - [SMALL_STATE(2114)] = 84057, - [SMALL_STATE(2115)] = 84066, - [SMALL_STATE(2116)] = 84079, - [SMALL_STATE(2117)] = 84092, - [SMALL_STATE(2118)] = 84105, - [SMALL_STATE(2119)] = 84118, - [SMALL_STATE(2120)] = 84131, - [SMALL_STATE(2121)] = 84144, - [SMALL_STATE(2122)] = 84155, - [SMALL_STATE(2123)] = 84164, - [SMALL_STATE(2124)] = 84174, - [SMALL_STATE(2125)] = 84184, - [SMALL_STATE(2126)] = 84194, - [SMALL_STATE(2127)] = 84202, - [SMALL_STATE(2128)] = 84210, - [SMALL_STATE(2129)] = 84220, - [SMALL_STATE(2130)] = 84228, - [SMALL_STATE(2131)] = 84238, - [SMALL_STATE(2132)] = 84246, - [SMALL_STATE(2133)] = 84256, - [SMALL_STATE(2134)] = 84264, - [SMALL_STATE(2135)] = 84274, - [SMALL_STATE(2136)] = 84284, - [SMALL_STATE(2137)] = 84294, - [SMALL_STATE(2138)] = 84302, - [SMALL_STATE(2139)] = 84312, - [SMALL_STATE(2140)] = 84322, - [SMALL_STATE(2141)] = 84332, - [SMALL_STATE(2142)] = 84342, - [SMALL_STATE(2143)] = 84352, - [SMALL_STATE(2144)] = 84360, - [SMALL_STATE(2145)] = 84370, - [SMALL_STATE(2146)] = 84380, - [SMALL_STATE(2147)] = 84390, - [SMALL_STATE(2148)] = 84400, - [SMALL_STATE(2149)] = 84410, - [SMALL_STATE(2150)] = 84420, - [SMALL_STATE(2151)] = 84430, - [SMALL_STATE(2152)] = 84438, - [SMALL_STATE(2153)] = 84448, - [SMALL_STATE(2154)] = 84458, - [SMALL_STATE(2155)] = 84468, - [SMALL_STATE(2156)] = 84478, - [SMALL_STATE(2157)] = 84488, - [SMALL_STATE(2158)] = 84498, - [SMALL_STATE(2159)] = 84508, - [SMALL_STATE(2160)] = 84518, - [SMALL_STATE(2161)] = 84528, - [SMALL_STATE(2162)] = 84536, - [SMALL_STATE(2163)] = 84544, - [SMALL_STATE(2164)] = 84554, - [SMALL_STATE(2165)] = 84564, - [SMALL_STATE(2166)] = 84574, - [SMALL_STATE(2167)] = 84584, - [SMALL_STATE(2168)] = 84594, - [SMALL_STATE(2169)] = 84602, - [SMALL_STATE(2170)] = 84612, - [SMALL_STATE(2171)] = 84620, - [SMALL_STATE(2172)] = 84628, - [SMALL_STATE(2173)] = 84638, - [SMALL_STATE(2174)] = 84648, - [SMALL_STATE(2175)] = 84658, - [SMALL_STATE(2176)] = 84668, - [SMALL_STATE(2177)] = 84678, - [SMALL_STATE(2178)] = 84688, - [SMALL_STATE(2179)] = 84698, - [SMALL_STATE(2180)] = 84706, - [SMALL_STATE(2181)] = 84716, - [SMALL_STATE(2182)] = 84726, - [SMALL_STATE(2183)] = 84734, - [SMALL_STATE(2184)] = 84742, - [SMALL_STATE(2185)] = 84752, - [SMALL_STATE(2186)] = 84760, - [SMALL_STATE(2187)] = 84770, - [SMALL_STATE(2188)] = 84778, - [SMALL_STATE(2189)] = 84788, - [SMALL_STATE(2190)] = 84798, - [SMALL_STATE(2191)] = 84808, - [SMALL_STATE(2192)] = 84818, - [SMALL_STATE(2193)] = 84828, - [SMALL_STATE(2194)] = 84838, - [SMALL_STATE(2195)] = 84846, - [SMALL_STATE(2196)] = 84854, - [SMALL_STATE(2197)] = 84864, - [SMALL_STATE(2198)] = 84872, - [SMALL_STATE(2199)] = 84882, - [SMALL_STATE(2200)] = 84892, - [SMALL_STATE(2201)] = 84900, - [SMALL_STATE(2202)] = 84910, - [SMALL_STATE(2203)] = 84920, - [SMALL_STATE(2204)] = 84928, - [SMALL_STATE(2205)] = 84938, - [SMALL_STATE(2206)] = 84948, - [SMALL_STATE(2207)] = 84958, - [SMALL_STATE(2208)] = 84968, - [SMALL_STATE(2209)] = 84978, - [SMALL_STATE(2210)] = 84988, - [SMALL_STATE(2211)] = 84998, - [SMALL_STATE(2212)] = 85008, - [SMALL_STATE(2213)] = 85018, - [SMALL_STATE(2214)] = 85028, - [SMALL_STATE(2215)] = 85038, - [SMALL_STATE(2216)] = 85048, - [SMALL_STATE(2217)] = 85058, - [SMALL_STATE(2218)] = 85068, - [SMALL_STATE(2219)] = 85078, - [SMALL_STATE(2220)] = 85088, - [SMALL_STATE(2221)] = 85098, - [SMALL_STATE(2222)] = 85108, - [SMALL_STATE(2223)] = 85118, - [SMALL_STATE(2224)] = 85128, - [SMALL_STATE(2225)] = 85136, - [SMALL_STATE(2226)] = 85146, - [SMALL_STATE(2227)] = 85156, - [SMALL_STATE(2228)] = 85166, - [SMALL_STATE(2229)] = 85174, - [SMALL_STATE(2230)] = 85184, - [SMALL_STATE(2231)] = 85194, - [SMALL_STATE(2232)] = 85204, - [SMALL_STATE(2233)] = 85214, - [SMALL_STATE(2234)] = 85224, - [SMALL_STATE(2235)] = 85234, - [SMALL_STATE(2236)] = 85244, - [SMALL_STATE(2237)] = 85252, - [SMALL_STATE(2238)] = 85260, - [SMALL_STATE(2239)] = 85270, - [SMALL_STATE(2240)] = 85280, - [SMALL_STATE(2241)] = 85290, - [SMALL_STATE(2242)] = 85300, - [SMALL_STATE(2243)] = 85310, - [SMALL_STATE(2244)] = 85320, - [SMALL_STATE(2245)] = 85330, - [SMALL_STATE(2246)] = 85340, - [SMALL_STATE(2247)] = 85350, - [SMALL_STATE(2248)] = 85360, - [SMALL_STATE(2249)] = 85370, - [SMALL_STATE(2250)] = 85380, - [SMALL_STATE(2251)] = 85390, - [SMALL_STATE(2252)] = 85400, - [SMALL_STATE(2253)] = 85410, - [SMALL_STATE(2254)] = 85420, - [SMALL_STATE(2255)] = 85430, - [SMALL_STATE(2256)] = 85440, - [SMALL_STATE(2257)] = 85450, - [SMALL_STATE(2258)] = 85460, - [SMALL_STATE(2259)] = 85470, - [SMALL_STATE(2260)] = 85478, - [SMALL_STATE(2261)] = 85486, - [SMALL_STATE(2262)] = 85496, - [SMALL_STATE(2263)] = 85506, - [SMALL_STATE(2264)] = 85516, - [SMALL_STATE(2265)] = 85526, - [SMALL_STATE(2266)] = 85536, - [SMALL_STATE(2267)] = 85544, - [SMALL_STATE(2268)] = 85552, - [SMALL_STATE(2269)] = 85560, - [SMALL_STATE(2270)] = 85568, - [SMALL_STATE(2271)] = 85578, - [SMALL_STATE(2272)] = 85588, - [SMALL_STATE(2273)] = 85596, - [SMALL_STATE(2274)] = 85604, - [SMALL_STATE(2275)] = 85612, - [SMALL_STATE(2276)] = 85620, - [SMALL_STATE(2277)] = 85628, - [SMALL_STATE(2278)] = 85638, - [SMALL_STATE(2279)] = 85648, - [SMALL_STATE(2280)] = 85656, - [SMALL_STATE(2281)] = 85664, - [SMALL_STATE(2282)] = 85672, - [SMALL_STATE(2283)] = 85680, - [SMALL_STATE(2284)] = 85688, - [SMALL_STATE(2285)] = 85696, - [SMALL_STATE(2286)] = 85704, - [SMALL_STATE(2287)] = 85712, - [SMALL_STATE(2288)] = 85720, - [SMALL_STATE(2289)] = 85728, - [SMALL_STATE(2290)] = 85738, - [SMALL_STATE(2291)] = 85748, - [SMALL_STATE(2292)] = 85758, - [SMALL_STATE(2293)] = 85768, - [SMALL_STATE(2294)] = 85776, - [SMALL_STATE(2295)] = 85784, - [SMALL_STATE(2296)] = 85792, - [SMALL_STATE(2297)] = 85800, - [SMALL_STATE(2298)] = 85808, - [SMALL_STATE(2299)] = 85816, - [SMALL_STATE(2300)] = 85824, - [SMALL_STATE(2301)] = 85832, - [SMALL_STATE(2302)] = 85840, - [SMALL_STATE(2303)] = 85848, - [SMALL_STATE(2304)] = 85856, - [SMALL_STATE(2305)] = 85866, - [SMALL_STATE(2306)] = 85876, - [SMALL_STATE(2307)] = 85886, - [SMALL_STATE(2308)] = 85894, - [SMALL_STATE(2309)] = 85904, - [SMALL_STATE(2310)] = 85914, - [SMALL_STATE(2311)] = 85922, - [SMALL_STATE(2312)] = 85930, - [SMALL_STATE(2313)] = 85938, - [SMALL_STATE(2314)] = 85946, - [SMALL_STATE(2315)] = 85956, - [SMALL_STATE(2316)] = 85966, - [SMALL_STATE(2317)] = 85976, - [SMALL_STATE(2318)] = 85986, - [SMALL_STATE(2319)] = 85994, - [SMALL_STATE(2320)] = 86002, - [SMALL_STATE(2321)] = 86012, - [SMALL_STATE(2322)] = 86020, - [SMALL_STATE(2323)] = 86028, - [SMALL_STATE(2324)] = 86038, - [SMALL_STATE(2325)] = 86048, - [SMALL_STATE(2326)] = 86058, - [SMALL_STATE(2327)] = 86066, - [SMALL_STATE(2328)] = 86076, - [SMALL_STATE(2329)] = 86086, - [SMALL_STATE(2330)] = 86094, - [SMALL_STATE(2331)] = 86104, - [SMALL_STATE(2332)] = 86112, - [SMALL_STATE(2333)] = 86120, - [SMALL_STATE(2334)] = 86130, - [SMALL_STATE(2335)] = 86140, - [SMALL_STATE(2336)] = 86150, - [SMALL_STATE(2337)] = 86158, - [SMALL_STATE(2338)] = 86168, - [SMALL_STATE(2339)] = 86178, - [SMALL_STATE(2340)] = 86188, - [SMALL_STATE(2341)] = 86198, - [SMALL_STATE(2342)] = 86208, - [SMALL_STATE(2343)] = 86218, - [SMALL_STATE(2344)] = 86228, - [SMALL_STATE(2345)] = 86236, - [SMALL_STATE(2346)] = 86244, - [SMALL_STATE(2347)] = 86254, - [SMALL_STATE(2348)] = 86264, - [SMALL_STATE(2349)] = 86274, - [SMALL_STATE(2350)] = 86284, - [SMALL_STATE(2351)] = 86292, - [SMALL_STATE(2352)] = 86302, - [SMALL_STATE(2353)] = 86312, - [SMALL_STATE(2354)] = 86322, - [SMALL_STATE(2355)] = 86332, - [SMALL_STATE(2356)] = 86342, - [SMALL_STATE(2357)] = 86352, - [SMALL_STATE(2358)] = 86362, - [SMALL_STATE(2359)] = 86372, - [SMALL_STATE(2360)] = 86382, - [SMALL_STATE(2361)] = 86390, - [SMALL_STATE(2362)] = 86400, - [SMALL_STATE(2363)] = 86410, - [SMALL_STATE(2364)] = 86420, - [SMALL_STATE(2365)] = 86430, - [SMALL_STATE(2366)] = 86440, - [SMALL_STATE(2367)] = 86448, - [SMALL_STATE(2368)] = 86456, - [SMALL_STATE(2369)] = 86466, - [SMALL_STATE(2370)] = 86476, - [SMALL_STATE(2371)] = 86486, - [SMALL_STATE(2372)] = 86496, - [SMALL_STATE(2373)] = 86504, - [SMALL_STATE(2374)] = 86512, - [SMALL_STATE(2375)] = 86522, - [SMALL_STATE(2376)] = 86532, - [SMALL_STATE(2377)] = 86542, - [SMALL_STATE(2378)] = 86552, - [SMALL_STATE(2379)] = 86562, - [SMALL_STATE(2380)] = 86572, - [SMALL_STATE(2381)] = 86580, - [SMALL_STATE(2382)] = 86590, - [SMALL_STATE(2383)] = 86598, - [SMALL_STATE(2384)] = 86608, - [SMALL_STATE(2385)] = 86616, - [SMALL_STATE(2386)] = 86624, - [SMALL_STATE(2387)] = 86634, - [SMALL_STATE(2388)] = 86644, - [SMALL_STATE(2389)] = 86652, - [SMALL_STATE(2390)] = 86660, - [SMALL_STATE(2391)] = 86670, - [SMALL_STATE(2392)] = 86680, - [SMALL_STATE(2393)] = 86688, - [SMALL_STATE(2394)] = 86696, - [SMALL_STATE(2395)] = 86706, - [SMALL_STATE(2396)] = 86716, - [SMALL_STATE(2397)] = 86726, - [SMALL_STATE(2398)] = 86734, - [SMALL_STATE(2399)] = 86742, - [SMALL_STATE(2400)] = 86752, - [SMALL_STATE(2401)] = 86760, - [SMALL_STATE(2402)] = 86770, - [SMALL_STATE(2403)] = 86780, - [SMALL_STATE(2404)] = 86788, - [SMALL_STATE(2405)] = 86798, - [SMALL_STATE(2406)] = 86806, - [SMALL_STATE(2407)] = 86816, - [SMALL_STATE(2408)] = 86824, - [SMALL_STATE(2409)] = 86832, - [SMALL_STATE(2410)] = 86842, - [SMALL_STATE(2411)] = 86850, - [SMALL_STATE(2412)] = 86860, - [SMALL_STATE(2413)] = 86868, - [SMALL_STATE(2414)] = 86878, - [SMALL_STATE(2415)] = 86888, - [SMALL_STATE(2416)] = 86898, - [SMALL_STATE(2417)] = 86908, - [SMALL_STATE(2418)] = 86918, - [SMALL_STATE(2419)] = 86926, - [SMALL_STATE(2420)] = 86934, - [SMALL_STATE(2421)] = 86944, - [SMALL_STATE(2422)] = 86954, - [SMALL_STATE(2423)] = 86964, - [SMALL_STATE(2424)] = 86974, - [SMALL_STATE(2425)] = 86984, - [SMALL_STATE(2426)] = 86994, - [SMALL_STATE(2427)] = 87004, - [SMALL_STATE(2428)] = 87014, - [SMALL_STATE(2429)] = 87024, - [SMALL_STATE(2430)] = 87034, - [SMALL_STATE(2431)] = 87044, - [SMALL_STATE(2432)] = 87054, - [SMALL_STATE(2433)] = 87064, - [SMALL_STATE(2434)] = 87074, - [SMALL_STATE(2435)] = 87084, - [SMALL_STATE(2436)] = 87094, - [SMALL_STATE(2437)] = 87104, - [SMALL_STATE(2438)] = 87114, - [SMALL_STATE(2439)] = 87124, - [SMALL_STATE(2440)] = 87134, - [SMALL_STATE(2441)] = 87144, - [SMALL_STATE(2442)] = 87154, - [SMALL_STATE(2443)] = 87164, - [SMALL_STATE(2444)] = 87174, - [SMALL_STATE(2445)] = 87184, - [SMALL_STATE(2446)] = 87194, - [SMALL_STATE(2447)] = 87204, - [SMALL_STATE(2448)] = 87214, - [SMALL_STATE(2449)] = 87224, - [SMALL_STATE(2450)] = 87234, - [SMALL_STATE(2451)] = 87242, - [SMALL_STATE(2452)] = 87250, - [SMALL_STATE(2453)] = 87260, - [SMALL_STATE(2454)] = 87270, - [SMALL_STATE(2455)] = 87278, - [SMALL_STATE(2456)] = 87286, - [SMALL_STATE(2457)] = 87296, - [SMALL_STATE(2458)] = 87306, - [SMALL_STATE(2459)] = 87316, - [SMALL_STATE(2460)] = 87326, - [SMALL_STATE(2461)] = 87336, - [SMALL_STATE(2462)] = 87344, - [SMALL_STATE(2463)] = 87354, - [SMALL_STATE(2464)] = 87364, - [SMALL_STATE(2465)] = 87374, - [SMALL_STATE(2466)] = 87382, - [SMALL_STATE(2467)] = 87390, - [SMALL_STATE(2468)] = 87400, - [SMALL_STATE(2469)] = 87408, - [SMALL_STATE(2470)] = 87416, - [SMALL_STATE(2471)] = 87426, - [SMALL_STATE(2472)] = 87436, - [SMALL_STATE(2473)] = 87446, - [SMALL_STATE(2474)] = 87454, - [SMALL_STATE(2475)] = 87464, - [SMALL_STATE(2476)] = 87474, - [SMALL_STATE(2477)] = 87484, - [SMALL_STATE(2478)] = 87492, - [SMALL_STATE(2479)] = 87500, - [SMALL_STATE(2480)] = 87510, - [SMALL_STATE(2481)] = 87520, - [SMALL_STATE(2482)] = 87528, - [SMALL_STATE(2483)] = 87538, - [SMALL_STATE(2484)] = 87546, - [SMALL_STATE(2485)] = 87556, - [SMALL_STATE(2486)] = 87566, - [SMALL_STATE(2487)] = 87576, - [SMALL_STATE(2488)] = 87584, - [SMALL_STATE(2489)] = 87594, - [SMALL_STATE(2490)] = 87602, - [SMALL_STATE(2491)] = 87612, - [SMALL_STATE(2492)] = 87622, - [SMALL_STATE(2493)] = 87632, - [SMALL_STATE(2494)] = 87642, - [SMALL_STATE(2495)] = 87650, - [SMALL_STATE(2496)] = 87658, - [SMALL_STATE(2497)] = 87668, - [SMALL_STATE(2498)] = 87678, - [SMALL_STATE(2499)] = 87686, - [SMALL_STATE(2500)] = 87694, - [SMALL_STATE(2501)] = 87702, - [SMALL_STATE(2502)] = 87712, - [SMALL_STATE(2503)] = 87720, - [SMALL_STATE(2504)] = 87730, - [SMALL_STATE(2505)] = 87740, - [SMALL_STATE(2506)] = 87750, - [SMALL_STATE(2507)] = 87760, - [SMALL_STATE(2508)] = 87768, - [SMALL_STATE(2509)] = 87776, - [SMALL_STATE(2510)] = 87784, - [SMALL_STATE(2511)] = 87792, - [SMALL_STATE(2512)] = 87800, - [SMALL_STATE(2513)] = 87808, - [SMALL_STATE(2514)] = 87818, - [SMALL_STATE(2515)] = 87828, - [SMALL_STATE(2516)] = 87838, - [SMALL_STATE(2517)] = 87848, - [SMALL_STATE(2518)] = 87856, - [SMALL_STATE(2519)] = 87866, - [SMALL_STATE(2520)] = 87876, - [SMALL_STATE(2521)] = 87884, - [SMALL_STATE(2522)] = 87892, - [SMALL_STATE(2523)] = 87900, - [SMALL_STATE(2524)] = 87908, - [SMALL_STATE(2525)] = 87916, - [SMALL_STATE(2526)] = 87924, - [SMALL_STATE(2527)] = 87934, - [SMALL_STATE(2528)] = 87944, - [SMALL_STATE(2529)] = 87952, - [SMALL_STATE(2530)] = 87960, - [SMALL_STATE(2531)] = 87970, - [SMALL_STATE(2532)] = 87980, - [SMALL_STATE(2533)] = 87990, - [SMALL_STATE(2534)] = 87998, - [SMALL_STATE(2535)] = 88006, - [SMALL_STATE(2536)] = 88014, - [SMALL_STATE(2537)] = 88022, - [SMALL_STATE(2538)] = 88030, - [SMALL_STATE(2539)] = 88040, - [SMALL_STATE(2540)] = 88050, - [SMALL_STATE(2541)] = 88060, - [SMALL_STATE(2542)] = 88070, - [SMALL_STATE(2543)] = 88080, - [SMALL_STATE(2544)] = 88088, - [SMALL_STATE(2545)] = 88096, - [SMALL_STATE(2546)] = 88104, - [SMALL_STATE(2547)] = 88114, - [SMALL_STATE(2548)] = 88124, - [SMALL_STATE(2549)] = 88134, - [SMALL_STATE(2550)] = 88144, - [SMALL_STATE(2551)] = 88154, - [SMALL_STATE(2552)] = 88162, - [SMALL_STATE(2553)] = 88172, - [SMALL_STATE(2554)] = 88180, - [SMALL_STATE(2555)] = 88188, - [SMALL_STATE(2556)] = 88196, - [SMALL_STATE(2557)] = 88204, - [SMALL_STATE(2558)] = 88212, - [SMALL_STATE(2559)] = 88222, - [SMALL_STATE(2560)] = 88232, - [SMALL_STATE(2561)] = 88240, - [SMALL_STATE(2562)] = 88250, - [SMALL_STATE(2563)] = 88258, - [SMALL_STATE(2564)] = 88266, - [SMALL_STATE(2565)] = 88276, - [SMALL_STATE(2566)] = 88286, - [SMALL_STATE(2567)] = 88296, - [SMALL_STATE(2568)] = 88306, - [SMALL_STATE(2569)] = 88314, - [SMALL_STATE(2570)] = 88322, - [SMALL_STATE(2571)] = 88330, - [SMALL_STATE(2572)] = 88338, - [SMALL_STATE(2573)] = 88348, - [SMALL_STATE(2574)] = 88358, - [SMALL_STATE(2575)] = 88368, - [SMALL_STATE(2576)] = 88378, - [SMALL_STATE(2577)] = 88388, - [SMALL_STATE(2578)] = 88398, - [SMALL_STATE(2579)] = 88408, - [SMALL_STATE(2580)] = 88418, - [SMALL_STATE(2581)] = 88428, - [SMALL_STATE(2582)] = 88438, - [SMALL_STATE(2583)] = 88448, - [SMALL_STATE(2584)] = 88458, - [SMALL_STATE(2585)] = 88466, - [SMALL_STATE(2586)] = 88476, - [SMALL_STATE(2587)] = 88486, - [SMALL_STATE(2588)] = 88496, - [SMALL_STATE(2589)] = 88506, - [SMALL_STATE(2590)] = 88516, - [SMALL_STATE(2591)] = 88526, - [SMALL_STATE(2592)] = 88536, - [SMALL_STATE(2593)] = 88546, - [SMALL_STATE(2594)] = 88556, - [SMALL_STATE(2595)] = 88566, - [SMALL_STATE(2596)] = 88576, - [SMALL_STATE(2597)] = 88586, - [SMALL_STATE(2598)] = 88596, - [SMALL_STATE(2599)] = 88606, - [SMALL_STATE(2600)] = 88616, - [SMALL_STATE(2601)] = 88626, - [SMALL_STATE(2602)] = 88636, - [SMALL_STATE(2603)] = 88644, - [SMALL_STATE(2604)] = 88654, - [SMALL_STATE(2605)] = 88664, - [SMALL_STATE(2606)] = 88674, - [SMALL_STATE(2607)] = 88684, - [SMALL_STATE(2608)] = 88694, - [SMALL_STATE(2609)] = 88704, - [SMALL_STATE(2610)] = 88714, - [SMALL_STATE(2611)] = 88722, - [SMALL_STATE(2612)] = 88730, - [SMALL_STATE(2613)] = 88738, - [SMALL_STATE(2614)] = 88746, - [SMALL_STATE(2615)] = 88754, - [SMALL_STATE(2616)] = 88762, - [SMALL_STATE(2617)] = 88772, - [SMALL_STATE(2618)] = 88782, - [SMALL_STATE(2619)] = 88790, - [SMALL_STATE(2620)] = 88798, - [SMALL_STATE(2621)] = 88806, - [SMALL_STATE(2622)] = 88816, - [SMALL_STATE(2623)] = 88824, - [SMALL_STATE(2624)] = 88832, - [SMALL_STATE(2625)] = 88840, - [SMALL_STATE(2626)] = 88850, - [SMALL_STATE(2627)] = 88860, - [SMALL_STATE(2628)] = 88868, - [SMALL_STATE(2629)] = 88878, - [SMALL_STATE(2630)] = 88888, - [SMALL_STATE(2631)] = 88898, - [SMALL_STATE(2632)] = 88906, - [SMALL_STATE(2633)] = 88914, - [SMALL_STATE(2634)] = 88924, - [SMALL_STATE(2635)] = 88932, - [SMALL_STATE(2636)] = 88940, - [SMALL_STATE(2637)] = 88950, - [SMALL_STATE(2638)] = 88960, - [SMALL_STATE(2639)] = 88970, - [SMALL_STATE(2640)] = 88980, - [SMALL_STATE(2641)] = 88990, - [SMALL_STATE(2642)] = 89000, - [SMALL_STATE(2643)] = 89008, - [SMALL_STATE(2644)] = 89016, - [SMALL_STATE(2645)] = 89024, - [SMALL_STATE(2646)] = 89032, - [SMALL_STATE(2647)] = 89040, - [SMALL_STATE(2648)] = 89050, - [SMALL_STATE(2649)] = 89060, - [SMALL_STATE(2650)] = 89068, - [SMALL_STATE(2651)] = 89076, - [SMALL_STATE(2652)] = 89083, - [SMALL_STATE(2653)] = 89090, - [SMALL_STATE(2654)] = 89097, - [SMALL_STATE(2655)] = 89104, - [SMALL_STATE(2656)] = 89111, - [SMALL_STATE(2657)] = 89118, - [SMALL_STATE(2658)] = 89125, - [SMALL_STATE(2659)] = 89132, - [SMALL_STATE(2660)] = 89139, - [SMALL_STATE(2661)] = 89146, - [SMALL_STATE(2662)] = 89153, - [SMALL_STATE(2663)] = 89160, - [SMALL_STATE(2664)] = 89167, - [SMALL_STATE(2665)] = 89174, - [SMALL_STATE(2666)] = 89181, - [SMALL_STATE(2667)] = 89188, - [SMALL_STATE(2668)] = 89195, - [SMALL_STATE(2669)] = 89202, - [SMALL_STATE(2670)] = 89209, - [SMALL_STATE(2671)] = 89216, - [SMALL_STATE(2672)] = 89223, - [SMALL_STATE(2673)] = 89230, - [SMALL_STATE(2674)] = 89237, - [SMALL_STATE(2675)] = 89244, - [SMALL_STATE(2676)] = 89251, - [SMALL_STATE(2677)] = 89258, - [SMALL_STATE(2678)] = 89265, - [SMALL_STATE(2679)] = 89272, - [SMALL_STATE(2680)] = 89279, - [SMALL_STATE(2681)] = 89286, - [SMALL_STATE(2682)] = 89293, - [SMALL_STATE(2683)] = 89300, - [SMALL_STATE(2684)] = 89307, - [SMALL_STATE(2685)] = 89314, - [SMALL_STATE(2686)] = 89321, - [SMALL_STATE(2687)] = 89328, - [SMALL_STATE(2688)] = 89335, - [SMALL_STATE(2689)] = 89342, - [SMALL_STATE(2690)] = 89349, - [SMALL_STATE(2691)] = 89356, - [SMALL_STATE(2692)] = 89363, - [SMALL_STATE(2693)] = 89370, - [SMALL_STATE(2694)] = 89377, - [SMALL_STATE(2695)] = 89384, - [SMALL_STATE(2696)] = 89391, - [SMALL_STATE(2697)] = 89398, - [SMALL_STATE(2698)] = 89405, - [SMALL_STATE(2699)] = 89412, - [SMALL_STATE(2700)] = 89419, - [SMALL_STATE(2701)] = 89426, - [SMALL_STATE(2702)] = 89433, - [SMALL_STATE(2703)] = 89440, - [SMALL_STATE(2704)] = 89447, - [SMALL_STATE(2705)] = 89454, - [SMALL_STATE(2706)] = 89461, - [SMALL_STATE(2707)] = 89468, - [SMALL_STATE(2708)] = 89475, - [SMALL_STATE(2709)] = 89482, - [SMALL_STATE(2710)] = 89489, - [SMALL_STATE(2711)] = 89496, - [SMALL_STATE(2712)] = 89503, - [SMALL_STATE(2713)] = 89510, - [SMALL_STATE(2714)] = 89517, - [SMALL_STATE(2715)] = 89524, - [SMALL_STATE(2716)] = 89531, - [SMALL_STATE(2717)] = 89538, - [SMALL_STATE(2718)] = 89545, - [SMALL_STATE(2719)] = 89552, - [SMALL_STATE(2720)] = 89559, - [SMALL_STATE(2721)] = 89566, - [SMALL_STATE(2722)] = 89573, - [SMALL_STATE(2723)] = 89580, - [SMALL_STATE(2724)] = 89587, - [SMALL_STATE(2725)] = 89594, - [SMALL_STATE(2726)] = 89601, - [SMALL_STATE(2727)] = 89608, - [SMALL_STATE(2728)] = 89615, - [SMALL_STATE(2729)] = 89622, - [SMALL_STATE(2730)] = 89629, - [SMALL_STATE(2731)] = 89636, - [SMALL_STATE(2732)] = 89643, - [SMALL_STATE(2733)] = 89650, - [SMALL_STATE(2734)] = 89657, - [SMALL_STATE(2735)] = 89664, - [SMALL_STATE(2736)] = 89671, - [SMALL_STATE(2737)] = 89678, - [SMALL_STATE(2738)] = 89685, - [SMALL_STATE(2739)] = 89692, - [SMALL_STATE(2740)] = 89699, - [SMALL_STATE(2741)] = 89706, - [SMALL_STATE(2742)] = 89713, - [SMALL_STATE(2743)] = 89720, - [SMALL_STATE(2744)] = 89727, - [SMALL_STATE(2745)] = 89734, - [SMALL_STATE(2746)] = 89741, - [SMALL_STATE(2747)] = 89748, - [SMALL_STATE(2748)] = 89755, - [SMALL_STATE(2749)] = 89762, - [SMALL_STATE(2750)] = 89769, - [SMALL_STATE(2751)] = 89776, - [SMALL_STATE(2752)] = 89783, - [SMALL_STATE(2753)] = 89790, - [SMALL_STATE(2754)] = 89797, - [SMALL_STATE(2755)] = 89804, - [SMALL_STATE(2756)] = 89811, - [SMALL_STATE(2757)] = 89818, - [SMALL_STATE(2758)] = 89825, - [SMALL_STATE(2759)] = 89832, - [SMALL_STATE(2760)] = 89839, - [SMALL_STATE(2761)] = 89846, - [SMALL_STATE(2762)] = 89853, - [SMALL_STATE(2763)] = 89860, - [SMALL_STATE(2764)] = 89867, - [SMALL_STATE(2765)] = 89874, - [SMALL_STATE(2766)] = 89881, - [SMALL_STATE(2767)] = 89888, - [SMALL_STATE(2768)] = 89895, - [SMALL_STATE(2769)] = 89902, - [SMALL_STATE(2770)] = 89909, - [SMALL_STATE(2771)] = 89916, - [SMALL_STATE(2772)] = 89923, - [SMALL_STATE(2773)] = 89930, - [SMALL_STATE(2774)] = 89937, - [SMALL_STATE(2775)] = 89944, - [SMALL_STATE(2776)] = 89951, - [SMALL_STATE(2777)] = 89958, - [SMALL_STATE(2778)] = 89965, - [SMALL_STATE(2779)] = 89972, - [SMALL_STATE(2780)] = 89979, + [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(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(524)] = 4763, + [SMALL_STATE(525)] = 4834, + [SMALL_STATE(526)] = 4907, + [SMALL_STATE(527)] = 4978, + [SMALL_STATE(528)] = 5049, + [SMALL_STATE(529)] = 5120, + [SMALL_STATE(530)] = 5193, + [SMALL_STATE(531)] = 5266, + [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(601)] = 10300, + [SMALL_STATE(602)] = 10371, + [SMALL_STATE(603)] = 10442, + [SMALL_STATE(604)] = 10513, + [SMALL_STATE(605)] = 10584, + [SMALL_STATE(606)] = 10655, + [SMALL_STATE(607)] = 10726, + [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(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(895)] = 31368, + [SMALL_STATE(896)] = 31439, + [SMALL_STATE(897)] = 31510, + [SMALL_STATE(898)] = 31581, + [SMALL_STATE(899)] = 31652, + [SMALL_STATE(900)] = 31723, + [SMALL_STATE(901)] = 31794, + [SMALL_STATE(902)] = 31865, + [SMALL_STATE(903)] = 31936, + [SMALL_STATE(904)] = 32007, + [SMALL_STATE(905)] = 32078, + [SMALL_STATE(906)] = 32149, + [SMALL_STATE(907)] = 32220, + [SMALL_STATE(908)] = 32291, + [SMALL_STATE(909)] = 32362, + [SMALL_STATE(910)] = 32433, + [SMALL_STATE(911)] = 32504, + [SMALL_STATE(912)] = 32575, + [SMALL_STATE(913)] = 32646, + [SMALL_STATE(914)] = 32717, + [SMALL_STATE(915)] = 32788, + [SMALL_STATE(916)] = 32859, + [SMALL_STATE(917)] = 32930, + [SMALL_STATE(918)] = 33001, + [SMALL_STATE(919)] = 33072, + [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(932)] = 34011, + [SMALL_STATE(933)] = 34082, + [SMALL_STATE(934)] = 34153, + [SMALL_STATE(935)] = 34224, + [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(948)] = 35163, + [SMALL_STATE(949)] = 35234, + [SMALL_STATE(950)] = 35305, + [SMALL_STATE(951)] = 35376, + [SMALL_STATE(952)] = 35447, + [SMALL_STATE(953)] = 35518, + [SMALL_STATE(954)] = 35589, + [SMALL_STATE(955)] = 35660, + [SMALL_STATE(956)] = 35731, + [SMALL_STATE(957)] = 35802, + [SMALL_STATE(958)] = 35873, + [SMALL_STATE(959)] = 35944, + [SMALL_STATE(960)] = 36015, + [SMALL_STATE(961)] = 36086, + [SMALL_STATE(962)] = 36157, + [SMALL_STATE(963)] = 36228, + [SMALL_STATE(964)] = 36299, + [SMALL_STATE(965)] = 36370, + [SMALL_STATE(966)] = 36441, + [SMALL_STATE(967)] = 36512, + [SMALL_STATE(968)] = 36583, + [SMALL_STATE(969)] = 36654, + [SMALL_STATE(970)] = 36725, + [SMALL_STATE(971)] = 36796, + [SMALL_STATE(972)] = 36867, + [SMALL_STATE(973)] = 36938, + [SMALL_STATE(974)] = 37009, + [SMALL_STATE(975)] = 37080, + [SMALL_STATE(976)] = 37151, + [SMALL_STATE(977)] = 37222, + [SMALL_STATE(978)] = 37293, + [SMALL_STATE(979)] = 37364, + [SMALL_STATE(980)] = 37435, + [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, }; 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_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 101), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 37), - [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 59), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(994), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(426), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1053), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1724), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1722), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2616), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2648), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1996), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(199), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(368), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2263), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2264), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2265), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1999), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2000), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2268), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(238), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(252), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(796), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(121), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(127), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2373), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1812), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1785), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(450), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1897), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(287), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(415), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2685), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(413), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1955), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1928), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1730), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1268), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2661), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1256), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2013), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1001), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1024), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(427), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1049), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1727), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1706), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2160), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2181), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2079), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2223), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(87), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2235), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2252), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2045), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2038), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2366), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(236), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(253), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(886), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1816), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(451), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1972), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1014), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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(1038), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 36), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 36), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 36), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 72), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 72), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 72), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 77), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 77), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 77), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 70), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 70), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 81), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 81), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 81), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 89), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 89), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 89), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 89), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 89), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 89), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 93), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 93), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 99), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 99), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 99), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 72), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 77), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 81), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 89), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 89), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 99), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 36), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(71), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1636), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(218), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(71), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(383), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(218), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(259), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(341), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(372), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 27), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 104), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 27), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 104), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 25), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 22), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 22), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 29), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 99), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 89), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 89), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 54), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 97), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 60), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 92), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 77), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 72), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 80), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 36), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 63), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 62), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 54), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 22), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 92), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 22), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 25), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 80), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 72), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 77), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 97), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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_function_declaration, 6, .production_id = 89), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 89), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 93), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 103), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 60), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 36), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 63), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 62), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 99), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 29), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 91), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 91), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 79), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 79), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 44), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 44), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 106), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 102), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 96), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 95), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(257), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(365), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(326), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 41), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 43), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 73), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 73), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 74), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 74), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 76), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 76), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 74), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 74), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 78), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 78), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 41), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 31), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 31), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 40), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 40), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 82), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 82), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 39), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 39), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 38), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 38), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 88), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 88), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 90), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 31), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 31), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 15), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 41), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), REDUCE(sym_assignment_expression, 3, .production_id = 41), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 41), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 59), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(332), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 57), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(417), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1867), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1638), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(312), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(2373), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1511), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1872), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1873), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1731), - [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(2051), - [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1500), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1609), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 71), SHIFT_REPEAT(1522), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 4), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [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), + [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), + [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(2578), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 100), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 89), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 94), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 84), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 105), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [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 = true}}, SHIFT(126), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 99), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2023), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 6), - [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2051), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 34), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 33), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(231), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1840), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1815), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1695), - [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(232), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 67), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 35), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 86), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 69), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 66), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(1760), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(274), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(2708), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(261), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(2013), - [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(326), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 64), - [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(365), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 32), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 31), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 21), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1856), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1857), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(1712), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(217), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(198), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(2035), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 57), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(224), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1771), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1747), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(1482), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1479), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 66), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 20), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 68), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 83), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 77), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 84), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 83), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 85), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 87), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 89), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 94), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 100), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 98), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 99), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 105), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [4286] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [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), + [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), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token__template_chars = 1, + ts_external_token__ternary_qmark = 2, + ts_external_token_html_comment = 3, + ts_external_token_PIPE_PIPE = 4, + ts_external_token_escape_sequence = 5, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token__template_chars] = sym__template_chars, + [ts_external_token__ternary_qmark] = sym__ternary_qmark, + [ts_external_token_html_comment] = sym_html_comment, + [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [ts_external_token_escape_sequence] = sym_escape_sequence, +}; + +static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__template_chars] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_escape_sequence] = true, + }, + [2] = { + [ts_external_token_html_comment] = true, + }, + [3] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [4] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [5] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [6] = { + [ts_external_token__template_chars] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [7] = { + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, }; #ifdef __cplusplus diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index d2103259..17b4fde9 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -129,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -139,8 +146,7 @@ struct TSLanguage { lexer->advance(lexer, skip); \ start: \ skip = false; \ - lookahead = lexer->lookahead; \ - eof = lexer->eof(lexer); + lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \ From c7be60f5a3e9ee19e56b4c4e12462ef7bd979a6b Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 04:34:51 -0500 Subject: [PATCH 14/16] chore: add new regression tests --- test/corpus/expressions.txt | 14 ++++++- test/corpus/statements.txt | 77 ++++++++++++++++++++++++++++++++++--- 2 files changed, 84 insertions(+), 7 deletions(-) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 590f8a6b..12da64f7 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -539,6 +539,8 @@ class Foo extends require('another-class') { } } +class A{;} + --- (program @@ -628,7 +630,10 @@ class Foo extends require('another-class') { (member_expression (super) (property_identifier)) - (arguments)))))))) + (arguments))))))) + (class_declaration + (identifier) + (class_body))) ============================================ Classes with reserved words as methods @@ -1325,6 +1330,7 @@ i + j * 3 - j % 5; 2 ** i ** 3; +x; -x; +let + 5; --- @@ -1368,7 +1374,11 @@ i + j * 3 - j % 5; (identifier))) (expression_statement (unary_expression - (identifier)))) + (identifier))) + (expression_statement + (binary_expression + (identifier) + (number)))) ============================================ Boolean operators diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index f177f794..f856bb55 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -73,6 +73,9 @@ import { member1 , member2 as alias2, } from "module-name"; import("a"); import("a").then((m) => {}); import.meta.url; +import { b } from +'b'; /* comment */ import + { a } from 'a'; ---- @@ -179,7 +182,22 @@ import.meta.url; (member_expression (import) (property_identifier)) - (property_identifier)))) + (property_identifier))) + (import_statement + (import_clause + (named_imports + (import_specifier + (identifier)))) + (string + (string_fragment))) + (comment) + (import_statement + (import_clause + (named_imports + (import_specifier + (identifier)))) + (string + (string_fragment)))) ============================================ Exports @@ -364,6 +382,8 @@ if (a.b) { d; } +if (n-->0){} + ---- (program @@ -387,7 +407,14 @@ if (a.b) { arguments: (arguments (identifier)))) (expression_statement - (identifier))))) + (identifier)))) + (if_statement + condition: (parenthesized_expression + (binary_expression + left: (update_expression + argument: (identifier)) + right: (number))) + consequence: (statement_block))) ============================================ If-else statements @@ -452,6 +479,8 @@ for (var i = 0 ; i++) { } +for (let in {}); + --- (program @@ -504,7 +533,11 @@ for (var i = 0 right: (identifier))) increment: (update_expression argument: (identifier)) - body: (statement_block))) + body: (statement_block)) + (for_in_statement + left: (identifier) + right: (object) + body: (empty_statement))) ============================================ For-in statements @@ -859,6 +892,10 @@ var thing = { } }; +let foo = bar + // this is a comment + ? 'baz' : 'thud'; + --- (program @@ -886,7 +923,17 @@ var thing = { (expression_statement (call_expression (identifier) - (arguments)))))))))) + (arguments))))))))) + (lexical_declaration + (variable_declarator + (identifier) + (ternary_expression + (identifier) + (comment) + (string + (string_fragment)) + (string + (string_fragment)))))) ============================================ Comments with asterisks @@ -906,6 +953,14 @@ const c = 1; ***/ const d = 1; +class E { + f() { + } /*** com + ment ***/ + g() { + } +} + --- (program @@ -928,7 +983,19 @@ const d = 1; (lexical_declaration (variable_declarator (identifier) - (number)))) + (number))) + (class_declaration + (identifier) + (class_body + (method_definition + (property_identifier) + (formal_parameters) + (statement_block)) + (comment) + (method_definition + (property_identifier) + (formal_parameters) + (statement_block))))) ========================================== Comments within expressions From 6b5f663364f6780e575ccb928d1a551056baf368 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 04:43:14 -0500 Subject: [PATCH 15/16] fix: update test --- test/corpus/semicolon_insertion.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/corpus/semicolon_insertion.txt b/test/corpus/semicolon_insertion.txt index c9d9454e..d47e3386 100644 --- a/test/corpus/semicolon_insertion.txt +++ b/test/corpus/semicolon_insertion.txt @@ -276,8 +276,8 @@ let d (program (lexical_declaration - (variable_declarator (identifier)) - (comment)) + (variable_declarator (identifier))) + (comment) (comment) (lexical_declaration (variable_declarator (identifier)) From 82ef894bf25e3aad02c63dbecece707897727750 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 31 Jan 2024 04:47:17 -0500 Subject: [PATCH 16/16] fix: include parser.h locally --- src/scanner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scanner.c b/src/scanner.c index d57844e8..27e95956 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -1,4 +1,5 @@ -#include +#include "tree_sitter/parser.h" + #include enum TokenType {